-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1004 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
38
39
40
41
{
"name": "clash-mixin",
"version": "1.2.0",
"description": "一个适用于 Clash 的 mixin 管理器,允许你以优雅的方式添加插件。",
"main": "src/index.cjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src --ext .cjs",
"fix": "eslint ./src --fix --ext .cjs",
"prettier": "prettier ./src ./doc README.md -c -w"
},
"pre-commit": [
"lint",
"prettier"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FurryR/clash-mixin.git"
},
"keywords": [
"javascript",
"mixin-framework",
"clash",
"clash-for-windows"
],
"author": "FurryR",
"license": "MIT",
"bugs": {
"url": "https://github.com/FurryR/clash-mixin/issues"
},
"homepage": "https://github.com/FurryR/clash-mixin#readme",
"devDependencies": {
"eslint": "^8.48.0",
"pre-commit": "^1.2.2",
"prettier": "^3.0.3"
},
"dependencies": {
"axios": "^1.5.0",
"yaml": "^2.3.2"
}
}