-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.77 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
{
"name": "@eturino/key-set",
"version": "5.7.0",
"description": " (TypeScript port of https://github.com/eturino/ruby_key_set) KeySet with 4 classes to represent concepts of All, None, Some, and AllExceptSome, the last 2 with a sorted uniq list of keys, and all with intersection calculations",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"commit": "git-cz",
"build": "tsup",
"dev": "tsup --watch",
"check": "biome check --write src",
"test": "vitest run --coverage",
"test:watch": "vitest",
"reset": "git clean -dfx -e .idea && git reset --hard && npm install",
"version": "standard-version",
"prepare-release": "npm run reset && npm run check && npm run test && npm run version && npm run build",
"prepare": "husky || true"
},
"author": "Eduardo Turiño <[email protected]>",
"repository": {
"type": "github",
"url": "https://github.com/eturino/ts-key-set"
},
"bugs": {
"url": "https://github.com/eturino/ts-key-set/issues"
},
"homepage": "https://github.com/eturino/ts-key-set",
"license": "MIT",
"keywords": ["key-set", "sets", "groups"],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.6.1",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.8",
"commitizen": "^4.3.1",
"husky": "^9.1.7",
"inquirer": "^9.3.7",
"standard-version": "^9.5.0",
"ts-enum-util": "^4.1.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.4"
},
"dependencies": {
"es-toolkit": "^1.31.0"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}