-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.34 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.34 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "hardware-visualizer",
"version": "1.0.0",
"private": true,
"type": "module",
"license": "MIT",
"scripts": {
"dev": "concurrently \"npx react-devtools\" \"vite dev\"",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run --coverage",
"tauri": "tauri",
"lint": "biome lint && biome check && biome format --write",
"format": "biome format --write && biome check --write",
"lint:ci": "biome ci",
"license-checker": "license-checker --production --json > licenses.json",
"gen:licenses:linux": "node --experimental-strip-types .github/scripts/generate-licenses.ts linux",
"gen:licenses:win": "node --experimental-strip-types .github/scripts/generate-licenses.ts windows",
"gen:licenses:mac": "node --experimental-strip-types .github/scripts/generate-licenses.ts macos",
"gen:licenses:tmp": "node --experimental-strip-types .github/scripts/generate-licenses.ts tmp"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@tailwindcss/vite": "^4.2.1",
"@tauri-apps/cli": "^2.10.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.2.3",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.17",
"babel-plugin-react-compiler": "^1.0.0",
"concurrently": "^9.2.1",
"jsdom": "^28.0.0",
"license-checker": "^25.0.1",
"rollup-plugin-visualizer": "^7.0.0",
"shadcn": "^4.0.0",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.8"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@hookform/resolvers": "^5.2.2",
"@phosphor-icons/react": "^2.1.10",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.11",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-visually-hidden": "^1.2.4",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-os": "^2.3.2",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-sql": "^2.3.2",
"@tauri-apps/plugin-store": "^2.4.2",
"@tauri-apps/plugin-updater": "^2.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"i18next": "^25.8.4",
"jotai": "^2.17.1",
"lucide-react": "^0.577.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-error-boundary": "^6.1.0",
"react-hook-form": "^7.71.1",
"react-i18next": "^16.5.4",
"recharts": "^3.6.0",
"tailwind-merge": "^3.4.0",
"tailwind-variants": "^3.1.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.2.1"
}
}