-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
78 lines (78 loc) · 2.63 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
{
"name": "meteoalarm-card",
"version": "2.7.1",
"description": "Meteoalarm card for Home Assistant Lovelace UI",
"main": "dist/meteoalarm-card.js",
"keywords": [
"home-assistant",
"homeassistant",
"lovelace",
"custom-cards",
"meteoalarm",
"lovelace-card",
"meteoalarmeu"
],
"author": "MrBartusek",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/MrBartusek/MeteoalarmCard",
"repository": {
"type": "git",
"url": "git+https://github.com/MrBartusek/MeteoalarmCard.git"
},
"bugs": {
"url": "https://github.com/MrBartusek/MeteoalarmCard/issues"
},
"module": "meteoalarm-card.js",
"scripts": {
"start": "rollup -c rollup.config.dev.js --watch",
"build": "npm run lint && npm run rollup",
"build-tools": "tsc -p tools",
"fix-translations": "node tools/dist/fix-translations.js",
"translations-summary": "node tools/dist/translations-summary",
"lint": "eslint src/**/*.ts",
"rollup": "rollup -c"
},
"dependencies": {
"@lit-labs/scoped-registry-mixin": "^1.0.0",
"@material/mwc-formfield": "^0.25.3",
"@material/mwc-list": "^0.25.3",
"@material/mwc-menu": "^0.25.3",
"@material/mwc-notched-outline": "^0.25.3",
"@material/mwc-ripple": "^0.25.3",
"@material/mwc-select": "^0.25.3",
"@material/mwc-switch": "^0.25.3",
"@material/mwc-textfield": "^0.25.3",
"custom-card-helpers": "^1.7.2",
"home-assistant-js-websocket": "^5.11.1",
"lit": "^2.0.0",
"resize-observer-polyfill": "^1.5.1",
"swiper": "^8.2.2"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@rollup/plugin-json": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"rollup": "^2.58.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.0",
"typescript": "^4.4.3"
},
"resolutions": {
"lit": "^2.1.2",
"lit-html": "2.1.2",
"lit-element": "3.1.2",
"@lit/reactive-element": "1.2.1"
}
}