-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
{
"name": "@eturino/claims",
"version": "0.4.6",
"description": "Claim, ClaimSet and Ability for permissions (Typescript port of https://github.com/eturino/claims)",
"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": "npm run check:biome && npm run check:tsc",
"check:biome": "biome check --write src",
"check:tsc": "tsc --noEmit",
"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/claims.ts"
},
"bugs": {
"url": "https://github.com/eturino/claims.ts/issues"
},
"homepage": "https://github.com/eturino/claims.ts",
"license": "MIT",
"keywords": [
"claims",
"permissions"
],
"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.8"
},
"dependencies": {
"es-toolkit": "^1.31.0"
},
"peerDependencies": {
"@eturino/key-set": ">=5.10.0 <6.0.0"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}