-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 KB
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
{
"name": "rbac-ts",
"private": true,
"version": "0.0.0",
"description": "Type-safe RBAC for Node — feature parity with spatie/laravel-permission",
"license": "MIT",
"author": "Chris Arter <chris@arter.dev>",
"type": "module",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.24.0",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"typecheck": "turbo run typecheck",
"lint": "pnpm lint:fmt && pnpm lint:js && pnpm lint:deps",
"lint:fmt": "biome format .",
"lint:js": "biome lint .",
"lint:deps": "depcruise packages",
"fix": "biome check --write .",
"clean": "turbo run clean && rm -rf node_modules",
"prepare": "lefthook install",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter='./packages/*' && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@changesets/cli": "^2.27.10",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "2.1.9",
"dependency-cruiser": "^17.4.0",
"lefthook": "^2.1.8",
"turbo": "^2.3.4",
"typescript": "^5.7.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"better-sqlite3",
"esbuild",
"lefthook",
"prisma"
]
}
}