-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.1 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
{
"name": "root",
"repository": {
"type": "git",
"url": "https://github.com/acoBOYZ/grpc-pipe.git"
},
"private": true,
"scripts": {
"cleanNodeModules": "rimraf ./node_modules",
"clean": "bun --filter='./packages/**' run clean",
"build": "bun --filter='./packages/**' run build",
"build:all": "bun run build:core && bun run build:client && bun run build:server",
"build:core": "bun run --cwd packages/core build",
"build:client": "bun run --cwd packages/client build",
"build:server": "bun run --cwd packages/server build",
"push": "bun i && bun run clean && bun run build:all && bun run bump && bun run publish:ci",
"publish:ci": "bun run scripts/publish.js",
"bump": "bun run scripts/bump.js"
},
"type": "module",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@bufbuild/protobuf": "^2.6.3",
"@grpc/grpc-js": "^1.13.4",
"@types/long": "^5.0.0",
"fastq": "^1.19.1",
"protobufjs": "^7.5.3",
"protobufjs-cli": "^1.1.3",
"rimraf": "^6.0.1",
"snappy": "^7.3.1",
"ts-proto": "^2.7.7",
"typescript": "^5.9.2"
}
}