-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.56 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "tauri-app",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"lint": "eslint .",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"build:dmg": "dotenv -- tauri build --bundles dmg",
"publish:dmg": "dotenv -- tauri build --bundles dmg && gh release upload v$(node -p \"require('./package.json').version\") src-tauri/target/release/bundle/dmg/*.dmg --clobber"
},
"dependencies": {
"@base-ui-components/react": "^1.0.0-rc.0",
"@base-ui/react": "^1.3.0",
"@fontsource-variable/geist": "^5.2.8",
"@heroicons/react": "^2.2.0",
"@hugeicons/core-free-icons": "^4.1.1",
"@hugeicons/react": "^1.1.6",
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-updater": "^2.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"shadcn": "^4.1.2",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"dotenv-cli": "^11.0.0",
"eslint": "^10.1.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.58.0",
"vite": "^7.0.4"
}
}