-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.08 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": "tile-merge-app",
"private": true,
"version": "0.1.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"build:mac": "tauri build --target aarch64-apple-darwin",
"build:win": "export PATH=\"/opt/homebrew/opt/llvm/bin:$PATH\" && tauri build --runner cargo-xwin --target x86_64-pc-windows-msvc --no-bundle",
"version": "node -e \"const fs=require('fs');const p=require('./package.json');const t=JSON.parse(fs.readFileSync('src-tauri/tauri.conf.json'));t.version=p.version;fs.writeFileSync('src-tauri/tauri.conf.json',JSON.stringify(t,null,2)+'\\n');\" && git add src-tauri/tauri.conf.json"
},
"dependencies": {
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-opener": "^2",
"@types/leaflet": "^1.9.21",
"leaflet": "^1.9.4",
"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"
}
}