-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 895 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 895 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
37
38
{
"name": "griq",
"version": "0.1.1",
"description": "A simple HTTP tunneling service",
"main": "dist/index.js",
"bin": {
"griq": "dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"start:server": "node dist/server.js",
"start:client": "node dist/client.js",
"dev:server": "ts-node server/index.ts",
"dev:client": "ts-node cli/index.ts",
"package": "ncc build dist/cli/index.js -o dist/ncc"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.4.7",
"express": "^4.18.2",
"ora": "^8.2.0",
"ws": "^8.18.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.8.10",
"@types/ws": "^8.5.8",
"@vercel/ncc": "^0.38.3",
"nexe": "^5.0.0-beta.4",
"pkg": "^5.8.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"files": [
"dist/**/*"
]
}