-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.65 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
{
"name": "@depot/sdk-node",
"version": "1.1.0",
"description": "Node SDK for the Depot API",
"repository": "https://github.com/depot/sdk-node.git",
"homepage": "https://github.com/depot/sdk-node",
"author": "Jacob Gillespie <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"depot",
"docker",
"sdk"
],
"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 buf.build/depot/api && prettier --write src/gen",
"prepack": "pnpm run build",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@bufbuild/protobuf": "1.10.0",
"@connectrpc/connect": "^1.4.0",
"@connectrpc/connect-node": "^1.4.0"
},
"devDependencies": {
"@bufbuild/protoc-gen-es": "1.10.0",
"@connectrpc/protoc-gen-connect-es": "^1.4.0",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^22.5.4",
"esbuild": "^0.23.1",
"esbuild-register": "^3.6.0",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-pkg": "^0.18.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-pkg"
]
}
}