-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.92 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
{
"name": "esphome-frontend",
"version": "0.1.0",
"description": "Frontend for ESPHome Dashboard",
"private": true,
"type": "module",
"engines": {
"node": ">=22.18"
},
"scripts": {
"dev": "node build-scripts/dev-server.cjs",
"build": "node build-scripts/build.cjs",
"gen:languages": "node build-scripts/gen-language-manifest.cjs",
"lint": "node build-scripts/gen-language-manifest.cjs && tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"translations:upload": "node build-scripts/translations.ts upload",
"translations:download": "node build-scripts/translations.ts download",
"prepare": "husky"
},
"dependencies": {
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-yaml": "^6.1.3",
"@home-assistant/webawesome": "3.7.0",
"@lit-labs/router": "0.1.4",
"@lit/context": "1.1.6",
"@lit/reactive-element": "2.1.2",
"@mdi/js": "7.4.47",
"@replit/codemirror-indentation-markers": "^6.5.3",
"@tanstack/lit-table": "^8.21.3",
"codemirror": "^6.0.2",
"esptool-js": "^0.6.0",
"intl-messageformat": "^11.2.8",
"lit": "3.3.3",
"lit-html": "3.3.3",
"memoize-one": "^6.0.0",
"sonner-js": "^1.1.3",
"urlpattern-polyfill": "10.1.0"
},
"devDependencies": {
"@rspack/core": "2.0.8",
"@rspack/dev-server": "2.0.3",
"@swc/helpers": "0.5.23",
"@types/node": "25.9.3",
"@types/w3c-web-serial": "^1.0.8",
"fflate": "^0.8.3",
"happy-dom": "^20.10.6",
"husky": "^9.1.7",
"prettier": "3.8.4",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "6.0.3",
"vitest": "^4.1.9"
},
"browserslist": {
"modern": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions"
]
}
}