extra-map-card 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/extra-map-card.js +311 -0
- package/package.json +79 -0
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "extra-map-card",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Lovelace custom map card for Home Assistant",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"home-assistant",
|
|
7
|
+
"homeassistant",
|
|
8
|
+
"hass",
|
|
9
|
+
"map",
|
|
10
|
+
"map-card",
|
|
11
|
+
"lovelace",
|
|
12
|
+
"custom-cards"
|
|
13
|
+
],
|
|
14
|
+
"author": "Viet Ngoc",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/ngocjohn/extra-map-card",
|
|
18
|
+
"repo": "ngocjohn/extra-map-card"
|
|
19
|
+
},
|
|
20
|
+
"main": "dist/extra-map-card.js",
|
|
21
|
+
"module": "dist/extra-map-card.js",
|
|
22
|
+
"type": "module",
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"import": "./dist/extra-map-card.js"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"dist",
|
|
30
|
+
"README.md",
|
|
31
|
+
"LICENSE"
|
|
32
|
+
],
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@maptiler/sdk": "^3.0.1",
|
|
36
|
+
"@mdi/js": "^7.4.47",
|
|
37
|
+
"custom-card-helpers": "^1.9.0",
|
|
38
|
+
"date-fns": "^4.1.0",
|
|
39
|
+
"home-assistant-js-websocket": "^9.4.0",
|
|
40
|
+
"lit": "^3.2.1",
|
|
41
|
+
"memoize-one": "^6.0.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@babel/core": "^7.26.9",
|
|
45
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
46
|
+
"@rollup/plugin-commonjs": "^28.0.3",
|
|
47
|
+
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
48
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
49
|
+
"@turf/turf": "^7.2.0",
|
|
50
|
+
"@typescript-eslint/eslint-plugin": "^8.24.0",
|
|
51
|
+
"@typescript-eslint/parser": "^8.24.0",
|
|
52
|
+
"es-toolkit": "^1.32.0",
|
|
53
|
+
"eslint": "^9.20.1",
|
|
54
|
+
"eslint-plugin-perfectionist": "^4.9.0",
|
|
55
|
+
"eslint-plugin-unused-imports": "^4.1.4",
|
|
56
|
+
"husky": "^8.0.0",
|
|
57
|
+
"lint-staged": "^15.4.3",
|
|
58
|
+
"postcss-preset-env": "^10.1.4",
|
|
59
|
+
"rollup": "^4.34.7",
|
|
60
|
+
"rollup-plugin-commonjs": "^10.1.0",
|
|
61
|
+
"rollup-plugin-filesize": "^10.0.0",
|
|
62
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
63
|
+
"rollup-plugin-postcss-lit": "^2.1.0",
|
|
64
|
+
"rollup-plugin-serve": "^1.1.1",
|
|
65
|
+
"rollup-plugin-typescript2": "^0.36.0",
|
|
66
|
+
"tslib": "^2.8.1",
|
|
67
|
+
"typescript": "^5.7.3"
|
|
68
|
+
},
|
|
69
|
+
"browser": {
|
|
70
|
+
"crypto": false
|
|
71
|
+
},
|
|
72
|
+
"scripts": {
|
|
73
|
+
"dev": "rollup -c rollup.config.js --bundleConfigAsCjs --watch",
|
|
74
|
+
"build": "npm run lint && npm run rollup",
|
|
75
|
+
"lint": "eslint src/**/*.ts --fix",
|
|
76
|
+
"rollup": "rollup -c rollup.config.js --bundleConfigAsCjs",
|
|
77
|
+
"prepare": "husky install"
|
|
78
|
+
}
|
|
79
|
+
}
|