-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.53 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.53 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
{
"name": "@pomerium/enterprise-client-node",
"version": "0.1.0",
"author": "Caleb Doxsey <cdoxsey@pomerium.com>",
"description": "NodeJS client for the Pomerium Enterprise Console",
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./configs/tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"prepack": "npm run build"
},
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"release": {
"branches": [
"main"
]
},
"packageManager": "npm@11.6.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/pomerium/enterprise-client-node.git"
},
"keywords": [
"zero trust",
"pomerium",
"enterprise"
],
"license": "Apache-2.0",
"devDependencies": {
"@protobuf-ts/plugin": "^2.9.4",
"@types/node": "^25.5.0",
"prettier": "^3.8.1",
"protoc": "^34.0.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.3",
"@protobuf-ts/grpc-transport": "^2.9.4",
"@protobuf-ts/runtime": "^2.9.4",
"@protobuf-ts/runtime-rpc": "^2.9.4"
}
}