-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
57 lines (57 loc) · 1.49 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
50
51
52
53
54
55
56
57
{
"name": "@zitadel/node",
"version": "0.0.0-development",
"description": "Library for API access to ZITADEL. Provides compiled gRPC service clients and helpers for applications and service accounts.",
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsc -w",
"build": "npm run build:grpc && npm run build:tsc",
"prebuild:tsc": "rimraf dist",
"build:tsc": "tsc",
"prebuild:test": "rimraf dist",
"build:test": "tsc -p tsconfig.test.json",
"prebuild:grpc": "rimraf src/api/generated && make-dir src/api/generated",
"build:grpc": "buf generate https://github.com/zitadel/zitadel.git --path ./proto/zitadel",
"test": "ava",
"pretest:ci": "npm run build:grpc && npm run build:test",
"test:ci": "npm run test"
},
"keywords": [
"ZITADEL",
"gRPC",
"node",
"authN",
"authZ",
"OIDC",
"IAM",
"API"
],
"author": "Christoph Bühler, smartive AG, <[email protected]>",
"license": "Apache-2.0",
"files": [
"dist"
],
"devDependencies": {
"@bufbuild/buf": "^1.18.0-1",
"@tsconfig/node-lts": "^22.0.0",
"@types/node-rsa": "1.1.4",
"ava": "6.2.0",
"grpc-tools": "1.12.4",
"make-dir-cli": "4.0.0",
"rimraf": "6.0.1",
"ts-proto": "2.6.1",
"typescript": "5.7.2"
},
"dependencies": {
"axios": "1.7.9",
"jose": "5.9.6",
"long": "5.2.3",
"nice-grpc": "2.1.10",
"node-rsa": "1.1.1",
"openid-client": "5.7.1",
"protobufjs": "7.4.0"
}
}