-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.06 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "hyper-light-card",
"version": "0.9.6",
"description": "A custom Lovelace card for Home Assistant to control SignalRGB",
"main": "target/hyper-light-card.js",
"module": "target/hyper-light-card.js",
"type": "module",
"scripts": {
"start": "rollup -c -w --environment BUILD:development",
"build": "rollup -c --environment BUILD:production",
"build:dev": "rollup -c --environment BUILD:development",
"lint": "eslint src tests ",
"lint:fix": "eslint src tests --fix",
"test": "jest",
"test:watch": "jest --watch",
"copy:hass": "node scripts/copy-to-hass.js",
"dev": "npm run build:dev && npm run copy:hass",
"build:hacs": "rollup -c --environment BUILD:production"
},
"keywords": [
"home-assistant",
"lovelace",
"custom-card",
"signalrgb"
],
"author": "hyperb1iss",
"license": "Apache 2.0",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-typescript": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@open-wc/eslint-config": "^12.0.3",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/chroma-js": "^2.4.4",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@web/dev-server": "^0.4.6",
"@web/test-runner": "^0.19.0",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.7.0",
"chroma-js": "^3.1.1",
"colorthief": "^2.2.0",
"cssnano": "^7.0.6",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-prettier": "^5.2.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"lit": "^3.2.0",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"rollup": "^4.21.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-string": "^3.0.0",
"sass": "^1.78.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.6.2"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:lit/recommended",
"plugin:prettier/recommended"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"repository": {
"type": "git",
"url": "https://github.com/hyperb1iss/hyper-light-card.git"
},
"bugs": {
"url": "https://github.com/hyperb1iss/hyper-light-card/issues"
},
"homepage": "https://github.com/hyperb1iss/hyper-light-card#readme",
"dependencies": {
"custom-card-helpers": "^1.9.0"
}
}