-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
50 lines (50 loc) · 1.61 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
46
47
48
49
50
{
"name": "time-picker-card",
"version": "1.4.0",
"author": "Georgi Gardev <[email protected]>",
"description": "Lovelace time-picker-card",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"lovelace-card",
"lovelace-custom-card"
],
"license": "MIT",
"repository": "[email protected]:GeorgeSG/lovelace-time-picker-card.git",
"scripts": {
"start": "rollup -c --watch --bundleConfigAsCjs",
"build": "npm run lint && npm run rollup",
"lint": "eslint src/*.ts",
"rollup": "rollup -c --bundleConfigAsCjs",
"test": "jest",
"release-patch": "npm version patch && git push origin master --tags",
"release-minor": "npm version minor && git push origin master --tags",
"release-major": "npm version major && git push origin master --tags",
"start:ha": "docker run --rm -p8124:8123 -v $(pwd)/devtools/homeassistant:/config homeassistant/home-assistant:latest"
},
"dependencies": {
"custom-card-helpers": "^1.9.0",
"home-assistant-js-websocket": "^8.0.0",
"lit": "^2.8.0"
},
"devDependencies": {
"@el3um4s/rollup-plugin-terser": "^1.0.2",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.2.1",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"eslint": "^8.26.0",
"jest": "^29.2.2",
"prettier": "^3.3.3",
"rollup": "^4.24.4",
"rollup-plugin-serve": "^2.0.1",
"ts-jest": "^29.0.3",
"typescript": "^5.6.3"
}
}