-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 842 Bytes
/
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
{
"name": "easy-proxy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"easy-proxy": "src/cli.js"
},
"scripts": {
"dev": "node src/cli.js run",
"build": "npx pkg src/cli.js --out-path dist && npm run zip",
"zip": "node scripts/build-zip.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xiyuanyuan/easy-proxy.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/xiyuanyuan/easy-proxy/issues"
},
"homepage": "https://github.com/xiyuanyuan/easy-proxy#readme",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.3.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"http-proxy-middleware": "^2.0.6",
"js-yaml": "^4.1.0",
"open": "^8.4.0"
},
"devDependencies": {
"archiver": "^5.3.1"
}
}