-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 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
{
"name": "recht",
"version": "2.0.1",
"description": "A concise rule engine to express and enforce rules for selections, permissions and the like",
"type": "module",
"main": "./cjs-entry.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./cjs-entry.cjs"
}
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run --coverage",
"test:watch": "vitest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashersw/recht.git"
},
"keywords": [
"rule set",
"decision making",
"acl",
"access control"
],
"author": {
"name": "Armagan Amcalar",
"email": "armagan@amcalar.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dashersw/recht/issues"
},
"homepage": "https://github.com/dashersw/recht#readme",
"devDependencies": {
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4"
},
"dependencies": {}
}