-
-
Notifications
You must be signed in to change notification settings - Fork 922
Expand file tree
/
Copy pathpackage.json
More file actions
195 lines (195 loc) · 7.06 KB
/
package.json
File metadata and controls
195 lines (195 loc) · 7.06 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
{
"$schema": "https://json.schemastore.org/package",
"name": "hula",
"type": "module",
"version": "3.0.9",
"license": "Apache-2.0",
"engines": {
"node": "^20.19.0 || >=22.12.0",
"pnpm": ">=10"
},
"repository": {
"url": "https://github.com/HuLaSpark/HuLa.git"
},
"author": {
"name": "HuLaSpark团队",
"email": "2439646234@qq.com",
"url": "https://github.com/HuLaSpark"
},
"scripts": {
"========= 启动vue(tauri项目会连带执行不需要单独执行) =========": "",
"dev": "vite",
"========= 打包vue(tauri项目会连带执行不需要单独执行) =========": "",
"build": "vue-tsc --noEmit && vite build",
"========= 启动HuLa桌面应用程序 =========": "",
"tauri:dev": "tauri dev",
"========= 启动HuLa桌面应用程序(简化命令) =========": "",
"td": "tauri dev",
"========= windows中启动安卓纯前端(简化命令) =========": "",
"adev:win": "set TAURI_ENV_PLATFORM=android&& vite",
"========= mac中启动ios纯前端(简化命令) =========": "",
"idev:mac": "TAURI_ENV_PLATFORM=ios vite",
"========= 启动安卓程序(简化命令) =========": "",
"adev": "tauri android dev",
"========= 启动ios程序(简化命令) =========": "",
"idev": "tauri ios dev",
"========= 打包桌面应用程序(简化命令) =========": "",
"tb": "node scripts/interactive-build-inquirer.js",
"========= 打包桌面应用程序 =========": "",
"tauri:build": "node scripts/interactive-build-inquirer.js",
"========= 启动HuLa ios 程序 =========": "",
"tauri:ios:dev": "tauri ios dev",
"========= 启动HuLa android 程序 =========": "",
"tauri:android:dev": "tauri android dev",
"========= 生成icon =========": "",
"tauri:icon": "tauri icon public/light.png",
"========= 安装依赖前执行 =========": "",
"preinstall": "pnpm dlx only-allow pnpm && node scripts/check-all.js",
"========= 使用commit来进行代码提交 =========": "",
"commit": "git add . && git-cz",
"========= 只检查代码问题和格式(不修复) =========": "",
"check": "biome check",
"========= 修复代码问题和格式并且检查 =========": "",
"check:write": "biome check --write --unsafe",
"========= 格式化Vue文件模板 =========": "",
"format:vue": "pnpm dlx prettier --write \"src/**/*.vue\"",
"========= 完整格式化(JS+Vue) =========": "",
"format:all": "pnpm check:write && pnpm format:vue",
"========= Git提交前的代码检查(简化命令) =========": "",
"lint:s": "lint-staged && vue-tsc --noEmit",
"========= Git提交前的代码检查 =========": "",
"lint:staged": "lint-staged && vue-tsc --noEmit",
"========= 安装husky =========": "",
"prepare": "husky",
"========= 发版 =========": "",
"release": "release-it",
"========= commit后再次添加修改到上一次的commit =========": "",
"addition-commit": "git add . && git commit --amend --no-edit",
"========= 单元测试 =========": "",
"test:run": "vitest run",
"========= 使用 vitest UI =========": "",
"test:ui": "vitest --ui --coverage.enabled=true",
"========= 测试覆盖率 =========": "",
"coverage": "vitest run --coverage",
"========= 链接HuLa skill =========": "",
"skill": "node scripts/link-skills.js",
"========= 单独提交 =========": "",
"gitcz": "git-cz"
},
"dependencies": {
"@actions/github": "^7.0.0",
"@breezystack/lamejs": "^1.2.7",
"@fingerprintjs/fingerprintjs": "^5.0.1",
"@tauri-apps/api": "2.9.1",
"@tauri-apps/plugin-autostart": "2.5.1",
"@tauri-apps/plugin-barcode-scanner": "2.4.2",
"@tauri-apps/plugin-clipboard-manager": "2.3.2",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-fs": "^2.4.4",
"@tauri-apps/plugin-global-shortcut": "^2.3.1",
"@tauri-apps/plugin-http": "2.5.4",
"@tauri-apps/plugin-log": "^2.7.1",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.2",
"@tauri-apps/plugin-os": "2.3.2",
"@tauri-apps/plugin-process": "2.3.1",
"@tauri-apps/plugin-shell": "^2.3.3",
"@tauri-apps/plugin-sql": "^2.3.1",
"@tauri-apps/plugin-updater": "2.9.0",
"@vant/area-data": "^2.1.0",
"@vue-office/docx": "^1.6.3",
"@vue-office/excel": "^1.7.14",
"@vue-office/pdf": "^2.0.10",
"@vue-office/pptx": "^1.0.1",
"@vueuse/components": "^14.0.0",
"colorthief": "^2.6.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.19",
"digest-wasm": "^0.1.4",
"dompurify": "^3.3.0",
"driver.js": "^1.4.0",
"es-toolkit": "^1.43.0",
"file-type": "^21.1.1",
"grapheme-splitter": "^1.0.4",
"hula-emojis": "^1.3.1",
"internal-ip": "^8.0.1",
"markstream-vue": "0.0.3-beta.4",
"mermaid": "^11.12.1",
"mitt": "^3.0.1",
"naive-ui": "^2.43.2",
"p-limit": "^7.2.0",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"pinia-shared-state": "^1.0.1",
"seemly": "^0.3.10",
"stream-markdown": "^0.0.13",
"stream-monaco": "^0.0.15",
"tauri-plugin-mic-recorder-api": "^2.0.0",
"tauri-plugin-safe-area-insets": "^0.1.0",
"three": "^0.182.0",
"tlbs-map-vue": "^1.3.2",
"vant": "^4.9.21",
"vue": "^3.5.26",
"vue-cropper": "1.1.4",
"vue-demi": "0.14.10",
"vue-i18n": "^11.1.12",
"vue-router": "^4.6.4",
"vue-virtual-scroller": "2.0.0-beta.8"
},
"devDependencies": {
"@biomejs/biome": "^2.3.4",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@iconify/vue": "^5.0.0",
"@inquirer/prompts": "^8.0.2",
"@release-it/bumper": "^7.0.5",
"@release-it/conventional-changelog": "10.0.1",
"@tauri-apps/cli": "2.9.5",
"@types/crypto-js": "^4.2.2",
"@types/node": "^25.0.0",
"@types/three": "^0.182.0",
"@unocss/preset-wind3": "^66.5.10",
"@unocss/reset": "^66.5.10",
"@unocss/transformer-directives": "^66.5.10",
"@unocss/transformer-variant-group": "^66.5.10",
"@unocss/vite": "^66.5.10",
"@vitejs/plugin-vue": "^6.0.2",
"@vitejs/plugin-vue-jsx": "^5.1.2",
"@vitest/coverage-v8": "^4.0.15",
"@vitest/ui": "^4.0.15",
"@vue/test-utils": "^2.4.6",
"@vueuse/core": "^14.0.0",
"chalk": "^5.6.2",
"commitizen": "^4.3.1",
"cz-git": "^1.12.0",
"eruda": "^3.4.3",
"happy-dom": "^20.0.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss-pxtorem": "^6.1.0",
"prettier": "^3.7.4",
"release-it": "^19.0.6",
"sass": "1.97.2",
"typescript": "^5.9.3",
"unplugin-auto-import": "^20.3.0",
"unplugin-vue-components": "^30.0.0",
"vite": "7.3.1",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vitest": "^4.0.15",
"vue-tsc": "^3.1.5",
"web-vitals": "^5.1.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"pnpm": {
"overrides": {
"conventional-changelog-conventionalcommits": "8.0.0",
"lodash": "4.17.23",
"lodash-es": "4.17.23"
},
"ignoredBuiltDependencies": ["@parcel/watcher", "esbuild", "sharp", "tlbs-map-vue", "vue-demi"]
}
}