forked from shi-gg/proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 842 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 842 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
{
"name": "proxy",
"version": "1.1.0",
"description": "A simple node.js proxy manager for your VPS",
"main": "dist/app.js",
"repository": "https://github.com/Luna-devv/proxy",
"author": "Luna <luna@waya.one> (https://lunish.nl/luna)",
"license": "MIT",
"private": false,
"scripts": {
"ts": "yarn install typescript --save-dev -g",
"init": "yarn install && yarn run build && yarn run start",
"start": "node dist/app.js",
"build": "tsc --build",
"watch": "tsc --watch",
"rebuild": "yarn run build && yarn run start"
},
"dependencies": {
"http-proxy": "^1.18.1",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/http-proxy": "^1.17.10",
"@types/node": "^18.15.11",
"typescript": "^5.0.4"
},
"packageManager": "yarn@1.22.19",
"engines": {
"node": ">=18.4.0"
}
}