-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.87 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@tabcat/sorted-sets",
"version": "4.2.2",
"description": "Utilities for working with sorted sets",
"type": "module",
"main": "dist/src/index.js",
"files": [
"dist/src"
],
"engines": {
"node": ">=20"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./difference": {
"types": "./dist/src/difference.d.ts",
"import": "./dist/src/difference.js"
},
"./intersection": {
"types": "./dist/src/intersection.d.ts",
"import": "./dist/src/intersection.js"
},
"./split": {
"types": "./dist/src/split.d.ts",
"import": "./dist/src/split.js"
},
"./union": {
"types": "./dist/src/union.d.ts",
"import": "./dist/src/union.js"
},
"./util": {
"types": "./dist/src/util.d.ts",
"import": "./dist/src/util.js"
}
},
"types": "./dist/src/index.d.ts",
"scripts": {
"prepublishOnly": "pnpm install && pnpm build",
"ci": "pnpm build && pnpm lint && pnpm test",
"build": "rm -rf ./dist && tsc",
"test": "vitest",
"lint": "prettier src test --check",
"format": "prettier src test --write",
"api-docs": "typedoc src",
"benchmark": "pnpm build && node ./dist/benchmark/benchmark.js"
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
]
},
"lint-staged": {
"*.ts": "prettier --ignore-unknown --write"
},
"keywords": [
"set",
"sorted",
"predicate"
],
"author": "tabcat",
"license": "MIT",
"devDependencies": {
"@types/benchmark": "^2.1.5",
"benchmark": "^2.1.4",
"globals": "^15.0.0",
"husky": "^9.1.7",
"iter-tools-es": "^7.5.3",
"lint-staged": "^15.2.10",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^4.1.0",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
}
}