-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.52 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
{
"name": "@tabcat/ordered-sets",
"version": "4.1.2",
"description": "Utilities for working with ordered 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": {
"build": "rm -rf ./dist && tsc",
"test": "vitest",
"lint": "prettier --check src test",
"format": "prettier --write src test",
"api-docs": "typedoc src",
"benchmark": "pnpm build && node ./dist/benchmark/benchmark.js"
},
"keywords": [
"set",
"ordered",
"predicate"
],
"author": "tabcat",
"license": "MIT",
"devDependencies": {
"@types/benchmark": "^2.1.5",
"benchmark": "^2.1.4",
"globals": "^15.0.0",
"iter-tools-es": "^7.5.3",
"prettier": "^3.2.5",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
}
}