-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.02 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.02 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@authzed/authzed-node",
"version": "0.19.0",
"private": false,
"description": "authzed client for nodejs",
"keywords": [
"authorization",
"authzed",
"fine-grained-authorization",
"open-source",
"permissions",
"spicedb",
"zanzibar"
],
"license": "Apache-2.0",
"author": "authzed",
"repository": {
"type": "git",
"url": "git+https://github.com/authzed/authzed-node.git"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/src/index.cjs",
"module": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": {
"import": "./dist/src/index.d.ts",
"require": "./dist/src/index.d.cts",
"default": "./dist/src/index.d.ts"
},
"require": "./dist/src/index.cjs",
"import": "./dist/src/index.js"
}
},
"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",
"lint:package": "publint --pack npm",
"format": "oxfmt",
"build": "tsc",
"postbuild": "rollup dist/src/index.js --file dist/src/index.cjs --format cjs && cp dist/src/index.d.ts dist/src/index.d.cts",
"prepublish": "yarn build",
"build-js-client": "tsc --declaration false --outDir js-dist"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.3",
"@protobuf-ts/runtime": "^2.11.1",
"@protobuf-ts/runtime-rpc": "^2.11.1",
"google-protobuf": "^4.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@protobuf-ts/plugin": "^2.11.1",
"@tsconfig/node18": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"grpc-tools": "^1.13.1",
"oxfmt": "^0.28.0",
"publint": "^0.3.17",
"rollup": "^4.57.1",
"tsc-esm-fix": "^3.1.2",
"typescript": "^5.9",
"vitest": "^4.0.18"
}
}