-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
77 lines (77 loc) · 2.42 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": "lunar-phase-card",
"version": "1.9.0",
"description": "Lovelace custom card for tracking Moon phases",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"author": "Viet Ngoc",
"repository": {
"type": "git",
"url": "https://github.com/ngocjohn/lunar-phase-card",
"repo": "ngocjohn/lunar-phase-card"
},
"module": "lunar-phase-card.js",
"license": "MIT",
"dependencies": {
"@dotenvx/dotenvx": "^1.32.0",
"@mdi/js": "^7.4.47",
"@noim/suncalc3": "^2.0.5",
"@vibrant/color": "^3.2.1-alpha.1",
"chart.js": "^4.4.7",
"custom-card-helpers": "^1.9.0",
"dotenv": "^16.4.7",
"lit": "^3.2.1",
"luxon": "^3.5.0",
"node-vibrant": "^3.2.1-alpha.1",
"swiper": "^11.2.0",
"tinycolor2": "^1.6.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.25.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.4",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"axios": "^1.7.9",
"eslint": "^9.17.0",
"eslint-plugin-perfectionist": "^4.5.0",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"json5": "^2.2.3",
"lint-staged": "^15.3.0",
"postcss-preset-env": "^10.1.3",
"rollup": "^4.29.1",
"rollup-plugin-filesize": "^10.0.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",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"scripts": {
"dev": "rollup -c --watch --bundleConfigAsCjs",
"build": "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",
"add-missing-translations": "node scripts/add-missing-translations.js",
"translate-new-strings": "npx dotenvx run -- node scripts/translate-new-strings.js",
"update-missing": "npm run translate-new-strings && npm run add-missing-translations",
"prepare": "husky install"
}
}