forked from ngocjohn/lunar-phase-card
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.5 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
80
{
"name": "lunar-phase-card",
"version": "1.3.0-beta_1",
"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": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-typescript": "^11.1.6",
"apexcharts": "^3.50.0",
"custom-card-helpers": "^1.7.2",
"home-assistant-js-websocket": "^9.4.0",
"lit": "^3.1.4",
"suncalc3": "^2.0.5"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-decorators": "^7.17.8",
"@babel/plugin-transform-class-properties": "^7.24.1",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@types/leaflet": "^1.9.12",
"@types/leaflet-providers": "^1.2.4",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"devcert": "^1.2.2",
"dotenv": "^16.4.5",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^5.1.3",
"leaflet": "^1.9.4",
"leaflet-providers": "^2.0.0",
"postcss-preset-env": "^9.5.12",
"prettier": "^3.3.2",
"rollup": "^2.70.1",
"rollup-plugin-babel": "^4.4.0",
"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",
"swiper": "^11.1.4",
"typescript": "^5.4.5"
},
"resolutions": {
"lit": "^2.1.2",
"lit-html": "2.1.2",
"lit-element": "3.1.2",
"@lit/reactive-element": "1.2.1"
},
"scripts": {
"dev": "npm run update-lang && npm run import-lang && rollup -c --watch",
"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",
"local-copy": "cp dist/lunar-phase-card.js /Volumes/config/www/dashboard-resources/lunar-phase-card.js"
}
}