-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
89 lines (89 loc) · 3.09 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "clash-config-manager",
"productName": "clash-config-manager",
"bundleId": "fun.magicdawn.clash-config-manager",
"version": "0.20.0",
"description": "clash configuration manager",
"license": "MIT",
"repository": "magicdawn/clash-config-manager",
"main": "main/index.mjs",
"private": true,
"author": {
"name": "magicdawn",
"email": "magicdawn@qq.com",
"url": "https://magicdawn.fun"
},
"scripts": {
"prepare": "husky",
"postinstall": "electron-builder install-app-deps",
"dev": "conc -k npm:dev:main npm:dev:ui",
"dev:main": "pnpm -F main dev",
"dev:ui": "pnpm -F ui dev",
"dev:start-main": "electron bundle/development/main/index.mjs",
"dev:watch-main": "nodemon bundle/development/main/index.mjs --exec electron --watch bundle/development/main/",
"typecheck": "tsc --noEmit",
"build": "turbo build",
"build:raw": "pnpm build:main && pnpm build:ui",
"build:main": "turbo --filter main build",
"build:ui": "turbo --filter ui build",
"dist:pack": "electron-builder --dir",
"dist:mac": "electron-builder --macos --publish never",
"dist:mac:dmg": "electron-builder --macos dmg --publish never",
"dist": "electron-builder --macos --linux --windows --publish never",
"dist-and-install": "pnpm dist:pack && echo 'installing...' && rm -rf /Applications/clash-config-manager.app && cp -R ./dist/mac-arm64/clash-config-manager.app /Applications/",
"run-ncu-safe": "pnpm -r -c exec zsh -c ncu-safe && pnpm install",
"run-ncu-check": "pnpm -r -c exec zsh -c ncu"
},
"dependencies": {
"@electron/remote": "^2.1.2",
"electron-store": "^8.2.0",
"es-toolkit": "^1.30.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@magicdawn/prettier-config": "^0.0.4",
"@swc/core": "^1.10.1",
"@swc/helpers": "^0.5.15",
"@total-typescript/ts-reset": "^0.6.1",
"@types/fancy-log": "^2.0.2",
"@types/fs-extra": "^11.0.4",
"@types/jake": "^0.0.38",
"@types/node": "^22.10.2",
"@types/prettier": "3.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"concurrently": "^9.1.0",
"electron": "33.3",
"electron-builder": "^25.1.8",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.3",
"fancy-log": "^2.0.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"husky": "^9.1.7",
"jake": "^10.9.2",
"lint-staged": "^15",
"minimist": "^1.2.8",
"napa": "^3.0.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"type-fest": "^4.31.0",
"typescript": "^5.7.2",
"typescript-plugin-css-modules": "^5.1.0",
"unplugin-icons": "^0.22.0"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown"
]
},
"packageManager": "pnpm@9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf",
"pnpm": {
"patchedDependencies": {}
}
}