-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.12 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.12 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
{
"name": "MikuModManager",
"private": true,
"version": "0.3.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && node scripts/sync-version.js && vite build",
"preview": "vite preview",
"tauri": "tauri",
"sync-version": "node scripts/sync-version.js",
"bump-version": "node -e \"const fs=require('fs'),path=require('path');const v=JSON.parse(fs.readFileSync(path.join(__dirname,'version.json'),'utf8'));const p=v.version.split('.');p[2]=(parseInt(p[2])+1).toString();v.version=p.join('.');fs.writeFileSync(path.join(__dirname,'version.json'),JSON.stringify(v,null,2));console.log('版本已更新为:',v.version);\" && node scripts/sync-version.js"
},
"dependencies": {
"@supabase/supabase-js": "^2.76.1",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.3.2",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-shell": "^2.3.0",
"naive-ui": "^2.43.1",
"vue": "^3.5.13"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@vitejs/plugin-vue": "^5.2.1",
"typescript": "~5.6.2",
"vite": "^6.0.3",
"vue-tsc": "^2.1.10"
}
}