-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.05 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.05 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
31
32
33
34
35
36
{
"name": "macslim",
"private": true,
"version": "0.2.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"bundle:arm": "tauri build --target aarch64-apple-darwin",
"bundle:intel": "tauri build --target x86_64-apple-darwin",
"bundle:universal": "tauri build --target universal-apple-darwin"
},
"dependencies": {
"solid-js": "^1.9.3",
"@solid-primitives/i18n": "^2.2.0",
"lucide-solid": "^0.468.0",
"motion": "^11.15.0",
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/plugin-os": "^2.2.0",
"@tauri-apps/plugin-shell": "^2.2.0",
"@tauri-apps/plugin-notification": "^2.2.0",
"@tauri-apps/plugin-autostart": "^2.2.0",
"@tauri-apps/plugin-updater": "^2.2.0",
"@tauri-apps/plugin-process": "^2.2.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.1.0",
"vite": "^6.0.7",
"vite-plugin-solid": "^2.11.0",
"typescript": "^5.7.2",
"tailwindcss": "^4.1.0",
"@tailwindcss/vite": "^4.1.0"
}
}