-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 937 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 937 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
34
35
36
37
38
39
{
"name": "simple-timer-card",
"version": "1.4.5",
"description": "Custom simple timer integration for Home Assistant",
"main": "timer-card.ts",
"type": "module",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch",
"clean": "rd /s /q dist",
"deploy": "simple_timer_deploy.bat"
},
"keywords": [
"home-assistant",
"lovelace",
"custom-card",
"simple-timer",
"typescript"
],
"targets": {
"module": {
"includeNodeModules": true
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"rollup-plugin-serve": "^1.1.1",
"rollup": "^4.39.0"
},
"dependencies": {
"custom-card-helpers": "^1.9.0",
"home-assistant-js-websocket": "^9.4.0",
"lit": "^3.2.1"
}
}