-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
77 lines (77 loc) · 2.51 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
{
"name": "vehicle-info-card",
"version": "1.6.1",
"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": {
"@dotenvx/dotenvx": "^1.32.0",
"@mdi/js": "^7.4.47",
"@rollup/plugin-babel": "^6.0.4",
"custom-card-helpers": "^1.9.0",
"dotenv": "^16.4.7",
"home-assistant-js-websocket": "^9.4.0",
"lit": "^3.2.1",
"lit-html": "^3.2.1",
"tinycolor2": "^1.6.0"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@types/leaflet": "^1.9.15",
"@types/leaflet-providers": "^1.2.4",
"@types/sortablejs": "^1.15.8",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"apexcharts": "^4.3.0",
"axios": "^1.7.9",
"es-toolkit": "^1.31.0",
"eslint": "^9.17.0",
"eslint-plugin-perfectionist": "^4.6.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"json5": "^2.2.3",
"leaflet": "^1.9.4",
"leaflet-providers": "^2.0.0",
"lint-staged": "^15.3.0",
"postcss-preset-env": "^10.1.3",
"rollup": "^4.29.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.6",
"swiper": "^11.2.0",
"typescript": "^5.7.2"
},
"scripts": {
"dev": "rollup -c rollup.config.dev.js --bundleConfigAsCjs --watch",
"build": "npm run import-lang && npm run lint && npm run rollup",
"lint": "eslint src/**/*.ts --no-warn-ignored",
"rollup": "rollup -c",
"update-lang": "node scripts/update-languages",
"import-lang": "node scripts/generate-lang-imports.js",
"add-missing-translations": "node scripts/add-missing-translations.js",
"translate-new-strings": "npx dotenvx run -- node scripts/translate-new-strings.mjs",
"update-missing": "npm run translate-new-strings && npm run add-missing-translations",
"prepare": "husky"
}
}