-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
70 lines (70 loc) · 2.1 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
{
"name": "vehicle-info-card",
"version": "1.6.0",
"description": "Lovelace custom card for displaying vehicle information from Mercedes Component integration",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"author": "Viet Ngoc",
"repository": {
"type": "git",
"url": "https://github.com/ngocjohn/vehicle-info-card",
"repo": "ngocjohn/vehicle-info-card"
},
"module": "vehicle-info-card.js",
"license": "MIT",
"dependencies": {
"@mdi/js": "^7.4.47",
"@rollup/plugin-babel": "^6.0.4",
"custom-card-helpers": "^1.7.2",
"dotenv": "^16.4.5",
"home-assistant-js-websocket": "^9.4.0",
"lit": "^3.1.4",
"lit-html": "^3.2.1",
"tinycolor2": "^1.6.0"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/leaflet": "^1.9.12",
"@types/leaflet-providers": "^1.2.4",
"@types/sortablejs": "^1.15.8",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"apexcharts": "^3.52.0",
"es-toolkit": "^1.17.0",
"eslint": "^8.9.0",
"eslint-plugin-perfectionist": "^3.7.0",
"eslint-plugin-unused-imports": "^4.1.4",
"json5": "^2.2.3",
"leaflet": "^1.9.4",
"leaflet-providers": "^2.0.0",
"postcss-preset-env": "^10.0.0",
"pre-commit": "^1.2.2",
"rollup": "^2.70.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-postcss-lit": "^2.1.0",
"rollup-plugin-serve": "^1.1.1",
"rollup-plugin-typescript2": "^0.36.0",
"sortablejs": "^1.15.2",
"swiper": "^11.1.4",
"typescript": "^5.4.5"
},
"scripts": {
"dev": "rollup -c --watch",
"build": "npm run import-lang && npm run lint && npm run rollup",
"lint": "eslint src/**/*.ts",
"rollup": "rollup -c",
"update-lang": "node scripts/update-languages",
"import-lang": "node scripts/generate-lang-imports.js"
}
}