-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.97 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@cookiemonsterdev/casl-typeorm",
"version": "1.0.5",
"license": "MIT",
"description": "TypeORM integration for CASL — filter queries and check permissions using ability rules",
"author": "Mykhailo Toporkov",
"homepage": "https://github.com/cookieMonsterDev/casl-typeorm",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest --passWithNoTests",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"lint-staged": {
"*.{ts}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"keywords": [
"casl",
"typeorm",
"authorization",
"permissions",
"acl",
"abac",
"rbac"
],
"peerDependencies": {
"@casl/ability": "^7.0.0",
"typeorm": "^1.0.0"
},
"devDependencies": {
"@casl/ability": "^7.0.0",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^11.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.0",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^30.0.0",
"lint-staged": "^17.0.0",
"prettier": "^3.8.4",
"semantic-release": "^25.0.0",
"ts-jest": "^29.4.11",
"typeorm": "^1.0.0",
"typescript": "^6.0.0",
"typescript-eslint": "^8.61.1"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"packageManager": "pnpm@10.30.3"
}