-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 5.67 KB
/
package.json
File metadata and controls
154 lines (154 loc) · 5.67 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"name": "easytier-manager-pro",
"version": "3.3.0",
"description": "EasyTier 管理器 Pro,EasyTier 管理器 Pro 是一款专为 EasyTier 内核设计的可视化桌面应用,支持通过界面一键启动/停止组网、修改内核参数(支持表单和文本编辑器两种模式)、实时查看运行日志,并可一键下载任意版本内核,简化配置管理,提升操作效率。",
"displayName": "EasyTier 管理器 Pro",
"author": {
"name": "cheng",
"email": "xulinch@88.com"
},
"private": false,
"type": "module",
"scripts": {
"i": "pnpm install",
"dev": "vite --mode base",
"tauri": "tauri",
"tauri:build": "pnpm tauri build",
"td": "pnpm tauri dev",
"tbd": "pnpm tauri build --debug",
"ts:check": "vue-tsc --noEmit --skipLibCheck",
"build": "node --max-old-space-size=6144 ./node_modules/vite/bin/vite.js build --mode pro",
"build:pro": "node --max-old-space-size=6144 ./node_modules/vite/bin/vite.js build --mode pro",
"build:dev": "node --max-old-space-size=6144 ./node_modules/vite/bin/vite.js build --mode dev",
"build:test": "node --max-old-space-size=6144 ./node_modules/vite/bin/vite.js build --mode test",
"serve:pro": "vite preview --mode pro",
"serve:dev": "vite preview --mode dev",
"serve:test": "vite preview --mode test",
"npm:check": "pnpx npm-check-updates -u",
"clean": "pnpx rimraf node_modules",
"clean:cache": "pnpx rimraf node_modules/.cache",
"lint:eslint": "eslint . --fix \"src/**/*.{js,ts,tsx,vue,html}\"",
"lint:format": "prettier --write --log-level warn \"src/**/*.{js,ts,json,tsx,css,less,vue,html,md}\"",
"lint:style": "stylelint --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.cjs",
"prepare": "husky",
"icon": "esno ./scripts/icon.ts",
"tauri:icon": "pnpm tauri icon",
"build:tauri": "pnpm tauri build",
"build:win64": "pnpm tauri build --target x86_64-pc-windows-msvc",
"build:win32": "pnpm tauri build --target i686-pc-windows-msvc",
"build:winarm64": "pnpm tauri build --target aarch64-pc-windows-msvc",
"build:mac": "pnpm tauri build --target aarch64-apple-darwin",
"build:linux": "pnpm tauri build --target x86_64-unknown-linux-gnu",
"cargo:fix": "cargo fix --lib -p easytier-manager-pro"
},
"dependencies": {
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-fs": "^2.5.0",
"@tauri-apps/plugin-http": "^2.5.8",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-window-state": "^2.4.1",
"@vueuse/core": "^14.2.1",
"@zxcvbn-ts/core": "^3.0.4",
"animate.css": "^4.1.1",
"axios": "^1.15.0",
"cropperjs": "^2.1.1",
"dayjs": "^1.11.20",
"driver.js": "^1.4.0",
"element-plus": "2.13.7",
"fflate": "0.8.2",
"lodash-es": "^4.18.1",
"mitt": "^3.0.1",
"monaco-editor": "^0.55.1",
"nprogress": "^0.2.0",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"qrcode": "^1.5.4",
"qs": "^6.15.1",
"smol-toml": "^1.6.1",
"url": "^0.11.4",
"vue": "3.5.32",
"vue-i18n": "11.3.2",
"vue-json-pretty": "^2.6.0",
"vue-router": "^4.6.4",
"vue-types": "^6.0.0",
"xgplayer": "^3.0.24"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@iconify/json": "^2.2.462",
"@iconify/vue": "^5.0.0",
"@intlify/unplugin-vue-i18n": "^11.0.7",
"@tauri-apps/cli": "^2.10.1",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/lodash-es": "^4.17.12",
"@types/node": "^25.6.0",
"@types/nprogress": "^0.2.3",
"@types/qrcode": "^1.5.6",
"@types/qs": "^6.15.0",
"@types/sortablejs": "^1.15.9",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"@unocss/transformer-variant-group": "^66.6.8",
"@vitejs/plugin-legacy": "^7.2.1",
"@vitejs/plugin-vue": "^6.0.6",
"@vitejs/plugin-vue-jsx": "^5.1.5",
"autoprefixer": "^10.5.0",
"chalk": "^5.6.2",
"consola": "^3.4.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-vue": "^10.8.0",
"esno": "^4.8.0",
"fs-extra": "^11.3.4",
"husky": "^9.1.7",
"inquirer": "^13.4.1",
"less": "^4.6.4",
"lint-staged": "^16.4.0",
"postcss": "^8.5.10",
"postcss-html": "^1.8.1",
"postcss-less": "^6.0.0",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"rollup": "^4.60.1",
"rollup-plugin-visualizer": "^7.0.1",
"stylelint": "^17.8.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended": "^18.0.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^8.1.1",
"terser": "^5.46.1",
"typescript": "5.9.3",
"typescript-eslint": "^8.58.2",
"unocss": "^66.6.8",
"vite": "7.3.0",
"vite-plugin-ejs": "^1.7.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-progress": "^0.0.7",
"vite-plugin-purge-icons": "^0.10.0",
"vite-plugin-style-import": "2.0.0",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-url-copy": "^1.1.4",
"vite-plugin-vue-devtools": "^8.1.1",
"vue-tsc": "^3.2.6"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.1.0"
},
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/xlc520/easytier-manager.git"
},
"bugs": {
"url": "https://github.com/xlc520/easytier-manager/issues"
},
"homepage": "https://github.com/xlc520/easytier-manager"
}