-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.97 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "spiffe",
"version": "0.4.0",
"type": "module",
"description": "Node.js SPIFFE Workload API client",
"repository": "https://github.com/depot/node-spiffe.git",
"homepage": "https://github.com/depot/node-spiffe",
"author": "Jacob Gillespie <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"spiffe",
"spire"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"clean": "rm -rf dist",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"generate": "buf generate && prettier --write src/proto",
"prepack": "pnpm run build",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@grpc/grpc-js": "^1.11.3",
"@peculiar/webcrypto": "^1.5.0",
"@peculiar/x509": "^1.12.2",
"@protobuf-ts/grpc-transport": "^2.9.4",
"@protobuf-ts/runtime": "^2.9.4",
"@protobuf-ts/runtime-rpc": "^2.9.4",
"protobufjs": "^7.4.0"
},
"devDependencies": {
"@bufbuild/protobuf": "1.10.0",
"@bufbuild/protoc-gen-es": "1.10.0",
"@connectrpc/connect": "^1.5.0",
"@connectrpc/connect-node": "^1.5.0",
"@connectrpc/protoc-gen-connect-es": "^1.5.0",
"@protobuf-ts/plugin": "^2.9.4",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^22.7.4",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-pkg": "^0.18.1",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"sideEffects": false,
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-pkg"
]
}
}