-
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.06 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.06 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": "simui",
"private": true,
"version": "0.4.1",
"type": "module",
"license": "MIT",
"description": "A beautiful, information-dense React UI layer for Home Assistant, embedded as a custom panel.",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build --mode panel",
"build:panel": "vite build --mode panel",
"build:integration": "npm run build && node -e \"require('fs').copyFileSync('dist/simui-panel.js','custom_components/simui/simui-panel.js')\"",
"preview": "vite preview",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"home-assistant-js-websocket": "^9.6.0",
"lightweight-charts": "^5.2.0",
"lucide-react": "^1.18.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "^5.6.0",
"vite": "^6.0.0"
},
"overrides": {
"esbuild": "^0.28.1"
}
}