-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 920 Bytes
/
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
{
"name": "sticky-rs",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"build-debug": "tauri build --debug",
"build-container-image": "podman build -t stick_rs/tauri:latest .",
"run-podman-container": "bash ./run-container.sh"
},
"dependencies": {
"@tauri-apps/api": "^1",
"i18next": "^23.11.5",
"stackblur-canvas": "^2.7.0",
"tauri-plugin-clipboard-api": "^0.6.10",
"tauri-plugin-log-api": "github:tauri-apps/tauri-plugin-log#v1",
"vue": "^3.3.4"
},
"devDependencies": {
"@tauri-apps/cli": "^1",
"@types/node": "^20.12.12",
"@vitejs/plugin-vue": "^5.0.4",
"typescript": "^5.0.2",
"vite": "^5.0.0",
"vite-plugin-i18next-loader": "^2.0.12",
"vite-svg-loader": "^5.1.0",
"vue-tsc": "^1.8.5"
}
}