forked from esphome/device-builder-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.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
{
"name": "esphome-frontend",
"version": "0.1.0",
"description": "Frontend for ESPHome Dashboard",
"private": true,
"type": "module",
"scripts": {
"dev": "node build-scripts/dev-server.cjs",
"build": "node build-scripts/build.cjs",
"lint": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"dependencies": {
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-yaml": "^6.1.3",
"@home-assistant/webawesome": "3.3.1",
"@lit-labs/router": "0.1.4",
"@lit/context": "1.1.6",
"@lit/reactive-element": "2.1.2",
"@mdi/js": "7.4.47",
"@tanstack/lit-table": "^8.21.3",
"codemirror": "^6.0.2",
"esptool-js": "^0.6.0",
"lit": "3.3.3",
"lit-html": "3.3.3",
"sonner-js": "^1.1.3",
"urlpattern-polyfill": "10.1.0"
},
"devDependencies": {
"@rspack/core": "2.0.4",
"@rspack/dev-server": "2.0.1",
"@swc/helpers": "0.5.21",
"@types/node": "25.9.1",
"@types/w3c-web-serial": "^1.0.8",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"prettier": "3.8.3",
"typescript": "6.0.3",
"vitest": "^4.1.7"
},
"browserslist": {
"modern": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions"
]
}
}