-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.8 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
{
"name": "v2-switcher",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "npx ts-node -r dotenv/config src/index.ts",
"build": "npx ts-node scripts/build.ts",
"dev:prepare": "npx shx touch src/config.json && npm run install:v2ray && npm run install:xray && npm run install:v2parser",
"install:v2ray": "npx ts-node scripts/install-v2ray.ts --outdir=./src",
"install:xray": "npx ts-node scripts/install-xray.ts --outdir=./src",
"install:v2parser": "npx ts-node scripts/install-v2parser.ts --outdir=./src",
"release": "npx ts-node scripts/release.ts",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Keivan-sf/v2ray-switcher.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Keivan-sf/v2ray-switcher/issues"
},
"homepage": "https://github.com/Keivan-sf/v2ray-switcher#readme",
"devDependencies": {
"@types/archiver": "^5.3.3",
"@types/jest": "^29.5.1",
"@types/minimist": "^1.2.2",
"@types/node": "^18.13.0",
"@vercel/ncc": "^0.38.0",
"archiver": "^6.0.1",
"jest": "^29.5.0",
"minimist": "^1.2.8",
"pkg": "^5.8.1",
"prettier": "^3.0.3",
"shx": "^0.3.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/adm-zip": "^0.5.2",
"@types/shelljs": "^0.8.12",
"adm-zip": "^0.5.10",
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"query-string": "7.1.3",
"shelljs": "^0.8.5",
"socks-proxy-agent": "^8.0.1",
"tree-kill": "^1.2.2",
"zod": "^3.22.2"
}
}