-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.5 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "v-proxy",
"version": "0.0.6",
"description": "简单易用的跨端抓包工具",
"main": "lib/index.js",
"bin": {
"vp": "bin/v-proxy",
"v-proxy": "bin/v-proxy"
},
"scripts": {
"start": "clear && nodemon --transpileOnly src/index.ts",
"dev": "ts-node --transpileOnly src/index.ts",
"perod": "tsc && node lib/index.js",
"build:compile": "tsc",
"build:web": "cd src/web/ && npm run build && cd ../../",
"copy:public": "shx mkdir -p ./lib/public && shx cp -r ./src/public/* ./lib/public",
"copy:web": "shx mkdir -p ./lib/web/dist && shx cp -r ./src/web/dist/* ./lib/web/dist",
"build:copy": "npm run copy:public && npm run copy:web",
"build": "shx rm -rf lib && npm run build:compile && npm run build:web && npm run build:copy",
"pub": "npm run build && npm publish",
"create_crt": "ts-node --transpileOnly src/create_root_cert.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mess663/v-proxy.git"
},
"author": "VaporSpace",
"keywords": [
"proxy",
"http",
"https"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Mess663/v-proxy/issues"
},
"homepage": "https://github.com/Mess663/v-proxy#readme",
"dependencies": {
"@types/co": "^4.6.3",
"@types/ip": "^1.1.0",
"@types/koa": "^2.13.5",
"@types/koa-route": "^3.2.5",
"@types/koa-router": "^7.4.4",
"@types/koa-static": "^4.0.2",
"@types/koa-static-cache": "^5.1.1",
"@types/koa-websocket": "^5.0.7",
"@types/koa2-cors": "^2.0.2",
"@types/lodash": "^4.14.184",
"@types/mkdirp": "^1.0.2",
"@types/node": "^18.6.4",
"@types/node-forge": "^1.0.4",
"chalk": "^4.1.2",
"co": "^4.6.0",
"daemon": "^1.1.0",
"daemonize-process": "^3.0.0",
"eslint": "^8.21.0",
"ip": "^1.1.8",
"koa": "^2.13.4",
"koa-route": "^3.2.0",
"koa-router": "^12.0.0",
"koa-static": "^5.0.0",
"koa-static-cache": "^5.1.4",
"koa-websocket": "^7.0.0",
"koa2-cors": "^2.0.6",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"needle": "^3.2.0",
"node-forge": "^1.3.1",
"node-storage": "^0.0.9",
"nodemon": "^2.0.19",
"pfork": "^0.6.0",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"ws": "^8.8.1"
},
"devDependencies": {
"@types/needle": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0"
}
}