-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.27 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
{
"name": "arbac",
"version": "0.5.1",
"description": "Zero-dependency type-safe Attribute enhanced Role-Based Access Control for typescript.",
"repository": {
"type": "git",
"url": "git+https://github.com/stroncium/arbac-ts.git"
},
"bugs": {
"url": "https://github.com/stroncium/arbac-ts/issues",
"email": "yanis.benson+arbac-ts@gmail.com"
},
"license": "MIT",
"author": "Yanis Benson <yanis.benson+arbac-ts@gmail.com>",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*.js",
"dist/*.d.ts"
],
"scripts": {
"build": "bun build --target=node ./src/index.ts --outfile=dist/index.js && bun run build:declaration",
"build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"test": "bun test --coverage",
"lint": "biome check",
"lint-fix": "biome check --fix",
"pub": "bun run lint && bun run test && npm publish"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"bun": "^1.3.0",
"bun-types": "^1.3.0",
"mitata": "^1.0.34",
"typescript": "^5.9.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"keywords": [
"abac",
"arbac",
"rbac",
"ts",
"typescript",
"zero-dependency",
"access-control"
]
}