-
-
Notifications
You must be signed in to change notification settings - Fork 593
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.38 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.38 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "vacuum-card",
"version": "2.11.7",
"type": "module",
"description": "Vacuum cleaner card for Home Assistant Lovelace UI",
"main": "dist/vacuum-card.js",
"scripts": {
"start": "rollup -c --watch",
"lint": "npm run lint:src && npm run lint:translations",
"lint:fix": "eslint src --fix",
"lint:src": "eslint src",
"lint:translations": "node scripts/validate-i18n",
"format": "prettier --write .",
"build": "rollup -c",
"test": "npm run lint && npm run build",
"prepare": "husky"
},
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards",
"vacuum"
],
"author": {
"name": "Denys Dovhan",
"email": "denysdovhan@gmail.com",
"url": "http://denysdovhan.com"
},
"repository": {
"type": "git",
"url": "https://github.com/denysdovhan/vacuum-card.git"
},
"license": "MIT",
"dependencies": {
"custom-card-helpers": "^1.9.0",
"ha-template": "^1.4.0",
"home-assistant-js-websocket": "^9.6.0",
"lit": "^3.3.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@eslint/js": "^9.39.2",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/lodash": "^4.17.21",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"postcss-preset-env": "^11.1.3",
"prettier": "^3.7.4",
"rollup": "^4.54.0",
"rollup-plugin-minify-html-literals-v3": "^1.3.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-postcss-lit": "^2.2.0",
"rollup-plugin-serve": "^3.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.9.3"
},
"browserslist": [
"last 2 versions",
"not dead"
],
"lint-staged": {
"*.js": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
},
"prettier": {
"singleQuote": true
}
}