generated from custom-cards/boilerplate-card
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
70 lines (70 loc) · 2.1 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "fluid-level-background-card",
"version": "0.1.8.3",
"description": "Lovelace fluid-level-background-card",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"module": "fluid-level-background-card.js",
"repository": "[email protected]:custom_cards/fluid-level-background-card.git",
"author": "Ian Richardson <[email protected]>",
"license": "MIT",
"dependencies": {
"@commitlint/config-conventional": "^19.5.0",
"@mdi/js": "^7.4.47",
"colortranslator": "^4.0.0",
"custom-card-helpers": "^1.9.0",
"home-assistant-js-websocket": "^9.4.0",
"lit": "^3.2.1",
"rollup-plugin-sourcemaps": "^0.6.3"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@digitalroute/cz-conventional-changelog-for-jira": "^8.0.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"cz": "^1.8.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"rollup": "^2.79.2",
"rollup-plugin-serve": "^2.0.2",
"rollup-plugin-summary": "^2.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-uglify": "^6.0.4",
"ts-lit-plugin": "^1.2.1",
"typescript": "^5.6.3"
},
"scripts": {
"start": "rollup -c rollup.config.js --watch",
"build": "npm run lint && npm run rollup",
"lint": "eslint src/*.ts",
"rollup": "rollup -c",
"prepare": "husky install",
"commit": "cz"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write"
]
}
}