-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 928 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 928 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
35
{
"name": "hunter",
"version": "0.5.0",
"scripts": {
"start": "vite",
"build:vite": "vite build",
"build": "tauri build",
"serve": "vite preview",
"tauri": "tauri",
"start:dev": "cross-env RUST_BACKTRACE=1 tauri dev",
"check": "biome run check --write src",
"dev": "bun run start:dev"
},
"type": "module",
"dependencies": {
"@tauri-apps/api": "^2.0.0-rc.4",
"@tauri-apps/plugin-dialog": "^2.0.0-rc.1",
"@tauri-apps/plugin-notification": "^2.0.0-rc.1",
"alley-components": "^0.3.4",
"solid-icons": "^1.1.0",
"solid-js": "^1.8.22"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@tauri-apps/cli": "^2.0.0-rc.10",
"@types/node": "^20.16.3",
"cross-env": "^7.0.3",
"sass": "^1.77.8",
"stylelint": "^16.9.0",
"stylelint-scss": "^6.5.1",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-plugin-solid": "^2.10.2"
}
}