-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 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
47
48
49
50
{
"name": "clash-fastest-proxy-selector",
"version": "1.0.5",
"description": "clash auto select fastest proxy tool",
"main": "bin/index.js",
"files": [
"bin/*"
],
"bin": {
"clash-fastest-proxy": "./bin/clash-fastest-proxy"
},
"repository": {
"type": "git",
"url": "https://github.com/peixin/clash-fastest-proxy-selector.git"
},
"homepage": "https://github.com/peixin/clash-fastest-proxy-selector#readme",
"author": {
"name": "liupeixin",
"email": "[email protected]"
},
"license": "MIT",
"private": false,
"keywords": [
"Clash",
"ClashX",
"ClashX Pro",
"proxy",
"benchmark",
"fastest",
"selector",
"API"
],
"scripts": {
"build": "tsc && cp src/clash-fastest-proxy bin/clash-fastest-proxy",
"start": "node bin/index.js",
"prepack": "yarn run build",
"dev": "ts-node src/index.ts"
},
"devDependencies": {
"@types/node": "^20.8.6",
"@types/yargs": "^17.0.28",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"yargs": "^17.7.2"
}
}