forked from rgc99/irrigation-unlimited-card
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "irrigation-unlimited-card",
"version": "2024.5.0",
"description": "Irrigation Unlimited card",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards",
"irrigation"
],
"type": "module",
"module": "irrigation-unlimited-card.js",
"repository": "https://github.com/rgc99/irrigation-unlimited-card",
"author": "rgc99",
"license": "MIT",
"homepage": "https://github.com/rgc99/irrigation-unlimited-card#readme",
"dependencies": {
"lit": "^2.7.4",
"home-assistant-js-websocket": "^9.3.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-transform-class-properties": "^7.24.7",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-commonjs": "^26.0.1",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"rollup-plugin-serve": "^1.1.1",
"rollup-plugin-typescript2": "^0.36.0",
"tslib": "^2.6.3",
"typescript": "^5.5.2"
},
"scripts": {
"start": "rollup -c rollup.config.dev.js --watch",
"build": "npm run rollup",
"lint": "eslint src/*.ts",
"rollup": "rollup -c"
}
}