forked from NightProxy/Night-Bare
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.56 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
64
65
66
67
{
"name": "@tomphttp/bare-server-node",
"description": "The Bare Server implementation in NodeJS.",
"version": "2.0.1",
"homepage": "https://github.com/tomphttp",
"bugs": {
"url": "https://github.com/tomphttp/bare-server-node/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/tomphttp/bare-server-node.git"
},
"author": {
"name": "TOMP Development",
"email": "[email protected]",
"url": "https://github.com/tomphttp"
},
"keywords": [
"proxy",
"tomp",
"tomphttp"
],
"license": "GPL-3.0",
"type": "commonjs",
"engines": {
"node": ">=18.0.0"
},
"bin": {
"bare-server-node": "bin.js"
},
"main": "dist/createServer.js",
"types": "dist/createServer.d.ts",
"files": [
"dist",
"bin.js"
],
"scripts": {
"build": "npm install --global @tomphttp/bare-server-node",
"start": "npx bare-server-node"
},
"dependencies": {
"async-exit-hook": "^2.0.1",
"commander": "^10.0.1",
"dotenv": "^16.0.3",
"http-errors": "^2.0.0",
"ipaddr.js": "^2.0.1",
"source-map-support": "^0.5.21",
"ws": "^8.13.0",
"@tomphttp/bare-server-node": "^2.0.1",
"express": "^4.18.2"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.0.0",
"@types/async-exit-hook": "^2.0.0",
"@types/http-errors": "^2.0.1",
"@types/node": "^18.16.19",
"@types/source-map-support": "^0.5.6",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"undici": "^5.22.1"
}
}