-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.51 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
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "./support/build.sh",
"build:binaries": "pkg dist/index.js --no-bytecode --public --target node18-linux-x64,node18-linux-arm64 --output dist/machine-agent",
"build:ts": "esbuild --bundle --outfile=dist/index.js --platform=node --target=node18 src/index.ts",
"clean": "rm -rf dist",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"generate": "buf generate && prettier --write src/gen",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@bufbuild/buf": "^1.37.0",
"@bufbuild/protobuf": "^1.10.0",
"@connectrpc/connect": "^1.4.0",
"@connectrpc/connect-node": "^1.4.0",
"@sentry/node": "^7.119.2",
"abort-controller-x": "^0.4.3",
"execa": "^7.2.0",
"node-graceful-shutdown": "^1.1.5",
"undici": "^5.28.4"
},
"devDependencies": {
"@bufbuild/protoc-gen-es": "^1.10.0",
"@connectrpc/protoc-gen-connect-es": "^1.0.0",
"@tsconfig/node18": "^18.2.0",
"@types/node": "^20.5.0",
"esbuild": "^0.19.2",
"esbuild-register": "^3.4.2",
"pkg": "^5.8.1",
"prettier": "^3.0.1",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-pkg": "^0.18.0",
"typescript": "^5.1.6"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"plugins": [
"prettier-plugin-pkg",
"prettier-plugin-organize-imports"
]
}
}