forked from cerbos/cerbos-sdk-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.48 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
{
"name": "@cerbos/embedded",
"version": "0.15.2",
"type": "module",
"description": "Client library for interacting with embedded Cerbos policy decision points generated by Cerbos Hub from server-side Node.js and browser-based applications",
"repository": {
"type": "git",
"url": "git+https://github.com/cerbos/cerbos-sdk-javascript.git",
"directory": "packages/embedded"
},
"homepage": "https://github.com/cerbos/cerbos-sdk-javascript/tree/main/packages/embedded#readme",
"bugs": {
"url": "https://github.com/cerbos/cerbos-sdk-javascript/issues"
},
"author": "Cerbos <help@cerbos.dev> (https://www.cerbos.dev)",
"license": "Apache-2.0",
"engines": {
"node": ">= 20"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"files": [
"lib/**/*.d.ts",
"lib/**/*.d.ts.map",
"lib/**/*.js",
"lib/**/*.js.map",
"src/**/*.ts"
],
"keywords": [
"Cerbos",
"authorization",
"access control",
"roles",
"permissions",
"policy",
"security",
"role-based access control",
"RBAC",
"attribute-based access control",
"ABAC",
"policy decision point",
"PDP",
"embedded",
"WebAssembly",
"WASM"
],
"peerDependencies": {
"@bufbuild/protobuf": "^2.11.0",
"@cerbos/api": "^0.6.0"
},
"dependencies": {
"@cerbos/core": "^0.29.0",
"ulid": "^3.0.2"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}