-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.13 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
{
"name": "ucastle",
"version": "1.4.3",
"description": "Convert CASL rules into Drizzle filters",
"keywords": [
"drizzle",
"casl",
"ucast"
],
"repository": "araujogui/ucastle",
"license": "MIT",
"author": "Guilherme Araújo <[email protected]>",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"check-types": "tsc --noEmit",
"format": "prettier --write .",
"lint": "eslint .",
"test": "vitest",
"test:w": "vitest --watch"
},
"dependencies": {
"@casl/ability": "^6.7.2",
"@ucast/core": "^1.10.2",
"drizzle-orm": "^0.38.1"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/node": "^22.10.2",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"prettier": "3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vitest": "^2.1.8"
},
"peerDependencies": {
"@casl/ability": "^6.0.0",
"@ucast/core": "^1.0.0",
"drizzle-orm": "^0.38.0"
},
"engines": {
"node": ">=22"
}
}