-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
42
43
44
45
46
47
48
49
{
"name": "@authzed/authzed-node",
"author": "authzed",
"version": "0.19.0",
"type": "module",
"description": "authzed client for nodejs",
"keywords": [
"authorization",
"authzed",
"fine-grained-authorization",
"open-source",
"permissions",
"spicedb",
"zanzibar"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "https://github.com/authzed/authzed-node",
"license": "Apache-2.0",
"private": false,
"scripts": {
"test": "./scripts/run-and-test.sh",
"only-run-tests": "vitest",
"buf": "buf generate && tsc-esm-fix --src src/authzedapi --ext='.js'",
"lint": "./node_modules/.bin/eslint src",
"build": "tsc",
"prepublish": "yarn build",
"build-js-client": "tsc --declaration false --outDir js-dist"
},
"dependencies": {
"@grpc/grpc-js": "^1.12.5",
"@protobuf-ts/runtime": "^2.9.4",
"@protobuf-ts/runtime-rpc": "^2.9.4",
"google-protobuf": "^3.21.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@protobuf-ts/plugin": "^2.9.4",
"@tsconfig/node18": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"grpc-tools": "^1.12.4",
"tsc-esm-fix": "^3.1.2",
"typescript": "^5.7",
"vitest": "^3.0.4"
}
}