-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
49 lines (49 loc) · 1.45 KB
/
package.json
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
{
"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": {
"*.{js,cjs,mjs,jsx,ts,tsx}": "eslint --cache --max-warnings=0 --fix",
"*.!(js|cjs|mjs|jsx|ts|tsx)": "prettier --ignore-unknown --cache --write"
},
"dependencies": {
"card-tools": "github:thomasloven/lovelace-card-tools#477f3d4",
"custom-card-helpers": "1.9.0",
"deepmerge": "4.3.1",
"home-assistant-js-websocket": "9.4.0",
"lit": "2.8.0",
"vite": "5.3.4"
},
"devDependencies": {
"@types/node": "20.14.12",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-only-warn": "1.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.1",
"lint-staged": "15.2.7",
"prettier": "3.3.3",
"typescript": "5.5.4",
"vite-plugin-compression": "0.5.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.x"
}
}