-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
executable file
·79 lines (79 loc) · 2.47 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
{
"name": "bom-radar-card",
"version": "3.0.2",
"description": "A rain radar card using the new vector tiles from the Australian BOM",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"module": "bom-radar-card.js",
"repository": "git@github.com:makin-things/bom-radar-card.git",
"author": "Simon Ratcliffe <simon@makin-things.com>",
"license": "MIT",
"dependencies": {
"@lit-labs/scoped-registry-mixin": "^1.0.3",
"@lit/reactive-element": "^1.6.3",
"@material/mwc-base": "^0.27.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-slider": "^0.25.3",
"@material/mwc-switch": "^0.25.3",
"@material/mwc-textfield": "^0.25.3",
"custom-card-helpers": "^1.9.0",
"home-assistant-js-websocket": "^5.12.0",
"lit": "^2.8.0",
"mapbox.js": "^3.3.1",
"randombytes": "^2.1.0",
"safe-buffer": "^5.2.1",
"serialize-javascript": "^6.0.2",
"tslib": "^2.6.2",
"tsutils": "^3.21.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/geojson": "^7946.0.13",
"@types/mapbox-gl": "^2.7.19",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"css-loader": "^6.9.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^4.2.1",
"mapbox-gl": "^2.15.0",
"prettier": "^2.8.8",
"rollup": "^2.79.1",
"rollup-plugin-serve": "^1.1.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.3.3",
"typescript-plugin-css-modules": "^5.0.2"
},
"resolutions": {
"lit": "^2.2.0",
"lit-html": "2.2.0",
"lit-element": "3.2.0",
"@lit/reactive-element": "1.3.0"
},
"scripts": {
"start": "rollup -c rollup.config.dev.js --watch",
"build": "rollup -c rollup.config.dev.js",
"lint": "eslint src/*.ts",
"rollup": "rollup -c"
}
}