-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
94 lines (94 loc) · 3.27 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
90
91
92
93
94
{
"name": "jiwu-mall-chat",
"version": "1.5.9",
"private": true,
"description": "jiwu-mall-chat",
"author": "Kiwi2333",
"scripts": {
"prepare": "husky install && nuxi prepare",
"tauri": "tauri",
"dev:tauri": "tauri dev",
"dev:desktop": "tauri dev",
"dev:android": "tauri android dev",
"dev:ios": "tauri ios dev",
"dev:nuxt": "nuxt dev --dotenv .env.development --host",
"prod:nuxt": "nuxt dev --dotenv .env.production --host",
"dev-local:nuxt": "nuxt dev --dotenv .env.development.local --host",
"prod-local:nuxt": "nuxt dev --dotenv .env.production.local --host",
"preview": "nuxt preview",
"build": "nuxi generate --dotenv .env.production && tauri build",
"build:nuxt": "nuxi generate --dotenv .env.production",
"build-local:nuxt": "nuxi generate --dotenv .env.production.local",
"build:nuxt:test": "nuxi build --dotenv .env.production",
"build:tauri": "tauri build",
"build:android": "tauri android build --apk",
"android-init": "pnpm tauri plugin android init",
"build:ios": "tauri ios build --ipa",
"ios-init": "pnpm tauri plugin ios init",
"release": "npm version minor && git push --tag && git fetch && git push",
"release:major": "npm version major && git push --tag && git fetch && git push",
"release:minor": "npm version minor && git push --tag && git fetch && git push",
"release:patch": "npm version patch && git push --tag && git fetch && git push",
"lint-staged": "lint-staged",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@nuxtjs/color-mode": "^3.5.2",
"@tauri-apps/plugin-autostart": "^2.2.0",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-fs": "^2.2.0",
"@tauri-apps/plugin-upload": "^2.2.1",
"@tauri-apps/plugin-websocket": "^2.3.0",
"@tauri-apps/plugin-window-state": "^2.2.1",
"element-china-area-data": "^6.1.0",
"md-editor-v3": "^5.2.1",
"qiniu-js": "^3.4.2",
"streamsaver": "^2.0.6"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.0",
"@element-plus/icons-vue": "^2.3.1",
"@element-plus/nuxt": "^1.1.1",
"@formkit/auto-animate": "^0.8.2",
"@iconify-json/carbon": "^1.2.5",
"@iconify-json/solar": "^1.2.2",
"@iconify-json/tabler": "^1.2.15",
"@iconify/vue": "^4.3.0",
"@imengyu/vue3-context-menu": "^1.4.4",
"@nuxt/devtools": "^1.7.0",
"@nuxt/eslint": "^0.7.5",
"@pinia/nuxt": "^0.9.0",
"@tauri-apps/api": "^2.2.0",
"@tauri-apps/cli": "^2.2.7",
"@tauri-apps/plugin-notification": "^2.2.1",
"@tauri-apps/plugin-os": "^2.2.0",
"@tauri-apps/plugin-process": "^2.2.0",
"@tauri-apps/plugin-shell": "^2.2.0",
"@tauri-apps/plugin-updater": "^2.4.0",
"@unocss/eslint-plugin": "^65.4.3",
"@unocss/nuxt": "^65.4.3",
"@vueuse/nuxt": "^12.5.0",
"element-plus": "^2.9.3",
"eslint": "^9.19.0",
"eslint-plugin-format": "^1.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"nuxt": "^3.14.1592",
"pinia": "^2.3.1",
"pinia-plugin-persistedstate": "^4.2.0",
"sass": "^1.83.4",
"typescript": "^5.7.3",
"vue-tsc": "^2.1.6"
},
"husky": {
"hooks": {
"pre-commit": "pnpm run lint-staged"
}
},
"lint-staged": {
"*.{ts,vue,js,sass,css}": [
"eslint --fix"
]
}
}