This repository was archived by the owner on Apr 28, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.5 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.5 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
{
"name": "unsigned-char",
"private": true,
"version": "0.0.10",
"license": "MIT",
"packageManager": "bun@1.3.9",
"bin": {
"uchar": "./bin/uchar.mjs"
},
"type": "module",
"scripts": {
"dev": "vite",
"desktop": "tauri build --debug --bundles app --config '{\"bundle\":{\"createUpdaterArtifacts\":false}}' && node scripts/debug-app.mjs --open",
"desktop:open": "tauri build --debug --bundles app --config '{\"bundle\":{\"createUpdaterArtifacts\":false}}' && node scripts/debug-app.mjs --open",
"desktop:dev": "tauri dev",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:debug-app": "tauri build --debug --bundles app --config '{\"bundle\":{\"createUpdaterArtifacts\":false}}' && node scripts/debug-app.mjs --open"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@tanstack/react-router": "^1.168.10",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2",
"@tauri-apps/plugin-process": "^2",
"@tauri-apps/plugin-updater": "^2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.7.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/cli": "^2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"tailwindcss": "^4.2.2",
"typescript": "~5.6.2",
"vite": "^8.0.8"
}
}