forked from ineo6/hosts
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.21 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": "hosts-server",
"version": "1.0.1",
"description": "GitHub最新hosts文件",
"main": "src/index.ts",
"bin": {
"hosts-server": "bin/hosts-cli.js"
},
"scripts": {
"build": "tsc",
"make": "ts-node ./src/index.ts --type=default",
"pkg:mac": "pkg . -t node14-mac-x64 -o app-mac",
"pkg:win": "pkg . -t node14-win-x64 -o app-win"
},
"author": "ineo6",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"cheerio": "1.0.0-rc.10",
"dayjs": "^1.10.4",
"debug": "^4.3.4",
"dns-over-http": "^0.2.0",
"dns-over-tls": "^0.0.8",
"is-browser": "^2.1.0",
"lodash.unionby": "^4.8.0",
"log": "^6.3.1",
"lru-cache": "^7.8.1",
"node-fetch": "^2.6.1",
"portfinder": "^1.0.28",
"yargs-parser": "^21.0.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@types/debug": "^4.1.7",
"@types/lodash.unionby": "^4.8.6",
"@types/node-fetch": "^2.6.1",
"@types/yargs-parser": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "7.32.0",
"eslint-config-magic": "^2.3.0",
"pkg": "^5.6.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}