-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "rolebaker",
"version": "1.0.5",
"description": "RoleBaker is a flexible, TypeScript-safe ABAC (Attribute-Based Access Control) library that manages role-based permissions for resources and actions. It supports both multi-role and single-role scenarios, with automatic documentation generation and no additional dependencies, making it framework-agnostic.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "jest"
},
"author": {
"name": "Viacheslav Tkachenko",
"email": "t.viacheslav00@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/tkachenko0/RoleBaker"
},
"bugs": {
"url": "https://github.com/tkachenko0/RoleBaker/issues"
},
"homepage": "https://role-baker.vercel.app/",
"keywords": [
"ABAC",
"access control",
"authorization",
"role-based",
"role-based-access-control",
"permissions"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
}
}