-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.05 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
{
"name": "ultimate-power-card",
"version": "0.1.0",
"description": "Home Assistant custom Lovelace card — Tesla-style power flow with multi-battery and multi-appliance support",
"main": "dist/ultimate-power-card.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"home-assistant",
"lovelace",
"custom-card",
"solar",
"battery",
"power-flow"
],
"author": "Martin Němeček <nememart@gmail.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Developer089/UltimatePower-Card"
},
"dependencies": {
"lit": "^3.1.0",
"custom-card-helpers": "^1.9.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.9.0",
"typescript": "^5.3.0",
"tslib": "^2.6.0"
}
}