-
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) · 992 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 992 Bytes
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": "grpc-basic",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/RovingCodeMonkey/node-grpc-basic#readme",
"bugs": {
"url": "https://github.com/RovingCodeMonkey/node-grpc-basic/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RovingCodeMonkey/node-grpc-basic.git"
},
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client": "tsx src/client.ts",
"server": "tsx src/server.ts",
"copy-assets": "copyfiles -u 1 assets/**/* dist/assets",
"build": "tsc && npm run copy-assets",
"start:server": "node dist/server.js",
"start:client": "node dist/client.js"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.3",
"@grpc/proto-loader": "^0.8.0"
},
"devDependencies": {
"@types/node": "^25.3.2",
"copyfiles": "^2.4.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}