-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "paper-buttons-row",
"version": "0.0.0-dev",
"type": "module",
"private": true,
"scripts": {
"prepare": "husky",
"dev": "vite build --watch",
"build": "vite build",
"build:tsc": "tsc && vite build",
"typecheck": "tsc",
"lint": "eslint . --cache --max-warnings=0 --ext js,cjs,mjs,jsx,ts,tsx",
"lint:fix": "pnpm run lint --fix",
"format": "prettier --cache --write .",
"format:check": "prettier --cache --check ."
},
"lint-staged": {
"*": "biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
},
"dependencies": {
"card-tools": "github:thomasloven/lovelace-card-tools#477f3d4",
"custom-card-helpers": "1.9.0",
"deepmerge": "4.3.1",
"fast-deep-equal": "3.1.3",
"home-assistant-js-websocket": "9.5.0",
"lit": "2.8.0",
"vite": "6.1.6"
},
"devDependencies": {
"@biomejs/biome": "2.1.3",
"@types/node": "22.17.0",
"husky": "9.1.7",
"lint-staged": "15.5.2",
"typescript": "5.8.3",
"vite-plugin-compression": "0.5.1"
},
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=20.x"
}
}