-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 869 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 869 Bytes
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
{
"name": "shortcuts",
"version": "0.0.1",
"description": "",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"start": "cross-env CACHE_MODE=development tauri dev",
"tauri-build": "tauri build",
"tauri-build-debug": "tauri build --debug"
},
"license": "MIT",
"dependencies": {
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-shell": "^2.3.5",
"lodash": "^4.17.21",
"solid-js": "^1.9.5",
"solid-styled-components": "^0.28.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@tauri-apps/api": "2.10.1",
"@tauri-apps/cli": "2.10.0",
"@types/lodash": "^4.14.201",
"@types/uuid": "^9.0.7",
"cross-env": "^7.0.3",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vite-plugin-solid": "^2.11.6"
}
}