-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
41 lines (41 loc) · 1.03 KB
/
package.json
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
{
"name": "@permify/permify-node",
"version": "1.0.8",
"description": "Permify Node Client",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "https://github.com/Permify/permify-node",
"private": false,
"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"
},
"keywords": [
"permissions",
"access-control",
"rebac",
"fga",
"fine-grained-authorization",
"zanzibar",
"grpc"
],
"author": "permify",
"license": "Apache-2.0",
"dependencies": {
"@bufbuild/protobuf": "^2.1.0",
"nice-grpc": "^2.1.9",
"ts-proto": "^2.2.5"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"eslint": "^8.30.0",
"globals": "^15.9.0",
"jasmine": "^5.2.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.4"
}
}