-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.08 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
{
"name": "proxy-cmd",
"version": "1.2.6",
"main": "index.js",
"bin": {
"proxy-cmd": "bin/index.js"
},
"scripts": {
"build": "rimraf bin && tsc -b --force tsconfig.build.json && tsx scripts/syncTpl.ts",
"repub": "tsx scripts/repub.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/CN-Tower/proxy-cmd.git"
},
"bugs": {
"url": "https://github.com/CN-Tower/proxy-cmd/issues"
},
"homepage": "https://github.com/CN-Tower/proxy-cmd#readme",
"author": "",
"license": "ISC",
"description": "Toggle proxy environments (HTTP_PROXY and HTTPS_PROXY) in command line.",
"keywords": [
"HTTP_PROXY",
"HTTPS_PROXY",
"NO_PROXY",
"proxy-env",
"proxy-env-switch",
"proxy-on",
"proxy-off"
],
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.3.0",
"fs-extra": "^10.1.0",
"glob": "^7.1.7"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.5",
"@types/node-fetch": "^2.6.9",
"rimraf": "^3.0.2",
"tsx": "^3.13.0",
"typescript": "^5.3.3"
}
}