-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 949 Bytes
/
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
{
"name": "v2ray2clashrule",
"version": "0.0.1",
"description": "convert v2ray domain list rule to clash rule",
"private": true,
"engines": {
"node": "^20.0.0"
},
"main": "src/main.ts",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "rimraf dist/* && tsx src/main.ts",
"dev": "pnpm run typecheck && DEBUG=* tsx watch src/main.ts",
"download": "rimraf data && giget gh:v2fly/domain-list-community/data#master data"
},
"keywords": [],
"author": "",
"license": "LGPL-3.0-or-later",
"devDependencies": {
"@antfu/eslint-config": "^2.6.2",
"@tsconfig/node20": "^20.1.2",
"@types/debug": "^4.1.12",
"@types/ejs": "^3.1.5",
"@types/node": "^20.10.8",
"eslint": "^8.56.0",
"giget": "^1.2.1",
"rimraf": "^5.0.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"dependencies": {
"debug": "^4.3.4",
"ejs": "^3.1.9",
"yaml": "^2.3.4"
}
}