-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.29 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
{
"name": "@permify/permify-node",
"version": "1.1.3",
"description": "Permify Node Client",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "https://github.com/Permify/permify-node",
"private": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"run-instance": "scripts/run-instance.sh",
"run-test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json",
"lint": "eslint \"src/**/*.ts\"",
"build": "rm -rf ./dist && npx tsc && cp -r src/grpc/generated dist/src/grpc/",
"buf:generate": "buf generate"
},
"keywords": [
"permissions",
"access-control",
"rebac",
"fga",
"fine-grained-authorization",
"zanzibar",
"grpc"
],
"author": "permify",
"license": "Apache-2.0",
"dependencies": {
"@bufbuild/protobuf": "^2.0.0",
"@grpc/grpc-js": "^1.9.0",
"nice-grpc": "^2.1.9",
"nice-grpc-common": "^2.0.0",
"long": "^5.2.3"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"jasmine": "^5.2.0",
"ts-node": "^10.9.2",
"ts-proto": "^2.6.1",
"typescript": "^5.0.0"
}
}