-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 843 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 843 Bytes
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
{
"name": "room-climate-card",
"version": "0.1.0",
"description": "Reusable Home Assistant Lovelace card to display climate metrics for a given room.",
"type": "module",
"main": "dist/room-climate-card.js",
"module": "dist/room-climate-card.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"clean": "rimraf dist && mkdir dist"
},
"keywords": [
"home-assistant",
"lovelace",
"custom-card",
"climate",
"hacs"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"lit": "^3.1.2",
"rimraf": "^5.0.7",
"rollup": "^4.12.0",
"tslib": "^2.6.3",
"typescript": "^5.4.5"
}
}