-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "bitcoin-miner-card",
"version": "1.0.0",
"description": "Custom Home Assistant Lovelace card for monitoring Bitcoin miners.",
"type": "module",
"main": "dist/bitcoin-miner-card.js",
"files": [
"dist",
"hacs.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c && npm run copy-assets && npm run gzip-dist",
"copy-assets": "cp -f src/base-layer.png src/overheat.png src/Alien-Encounters-*.ttf dist/",
"gzip-dist": "gzip -c -9 dist/bitcoin-miner-card.js > dist/bitcoin-miner-card.js.gz",
"watch": "rollup -c -w",
"lint": "tsc --noEmit"
},
"keywords": [
"home-assistant",
"lovelace",
"custom-card",
"bitcoin",
"miner"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@rollup/plugin-url": "^8.0.2",
"rollup": "^4.40.0",
"typescript": "^5.8.3"
},
"dependencies": {
"chart.js": "^4.5.1",
"lit": "^3.2.0",
"tslib": "^2.8.1"
}
}