-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.4 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
{
"name": "easy-floorplan-card",
"version": "0.7.2",
"description": "Interactive floorplan card for Home Assistant with a visual editor for walls, doors, windows, furniture, text and device/light controls",
"type": "module",
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"dev": "vite build --watch",
"ha": "npm run build && node docker/prepare.mjs && docker compose -f docker/docker-compose.yml up",
"ha:down": "docker compose -f docker/docker-compose.yml down",
"ha:reseed": "node docker/prepare.mjs --reseed",
"ha:reset": "docker compose -f docker/docker-compose.yml down -v && node docker/reset.mjs",
"ha:logs": "docker compose -f docker/docker-compose.yml logs -f homeassistant",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"keywords": [
"home-assistant",
"lovelace",
"custom-card",
"hacs",
"floorplan"
],
"license": "MIT",
"author": "Nicolas Sandller",
"repository": {
"type": "git",
"url": "https://github.com/nicosandller/easy-floorplan.git"
},
"homepage": "https://github.com/nicosandller/easy-floorplan",
"bugs": {
"url": "https://github.com/nicosandller/easy-floorplan/issues"
},
"dependencies": {
"custom-card-helpers": "^1.9.0",
"lit": "^3.1.0"
},
"devDependencies": {
"js-yaml": "^5.3.0",
"typescript": "^5.4.0",
"vite": "^5.2.0",
"vitest": "^2.1.9"
}
}