-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "@cellajs/permission-manager",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/cellajs/permission-manager.git"
},
"description": "Permission manager to formulate abac and rbac policies in typescript projects that have a hierarchical structure.",
"author": "CellaJS <[email protected]>",
"homepage": "https://cellajs.com",
"keywords": [
"abac",
"rbac",
"typescript",
"permissions",
"access control",
"authorization"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"build": "tsup src/index.ts",
"dev": "tsup --watch --onSuccess \"tsx dist/index.cjs\"",
"test": "tap run __tests__/index.test.ts",
"check": "npx @biomejs/biome check .",
"check:fix": "npx @biomejs/biome check --apply ."
},
"devDependencies": {
"@biomejs/biome": "1.6.2",
"@evilmartians/lefthook": "^1.6.7",
"@types/node": "^20.11.30",
"tap": "^18.7.2"
},
"license": "MIT",
"dependencies": {
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"bugs": {
"url": "https://github.com/cellajs/imado/issues"
}
}