-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "lexirank",
"version": "0.1.3",
"description": "Ranking system for ordered lists that leverages lexicographic ordering feature of strings.",
"author": "az33zy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git https://github.com/az33zy/lexirank.git"
},
"type": "module",
"exports": {
".": {
"module": "./src/index.js",
"import": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
}
},
"./package.json": "./package.json"
},
"module": "./src/index.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"build": "tsc",
"prepare": "pnpm build",
"release": "changeset publish",
"format": "prettier --write .",
"lint": "eslint && prettier --check ."
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"files": [
"src",
"types"
],
"homepage": "https://github.com/az33zy/lexirank#readme",
"bugs": {
"url": "https://github.com/az33zy/lexirank/issues"
},
"keywords": [
"lexicographic",
"ranking",
"lexorank",
"ordered lists",
"sorting"
],
"sideEffects": false,
"packageManager": "[email protected]"
}