-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.32 KB
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
{
"name": "geo-clock-card",
"version": "0.2.9",
"description": "Home Assistant Lovelace card with a live world day/night terminator using NASA Blue/Black Marble imagery.",
"type": "module",
"main": "dist/geo-clock-card.js",
"files": [
"dist/",
"DESIGN.md",
"README.md",
"LICENSE",
"hacs.json"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "vitest run",
"test:watch": "vitest",
"fetch-imagery": "bash scripts/fetch-imagery.sh",
"fetch-tz": "bash scripts/fetch-tz.sh",
"fetch-tz-iana": "bash scripts/fetch-tz-iana.sh",
"fetch-assets": "npm run fetch-imagery && npm run fetch-tz && npm run fetch-tz-iana"
},
"keywords": [
"home-assistant",
"lovelace",
"custom-card",
"geochron",
"terminator",
"world-clock"
],
"license": "MIT",
"dependencies": {
"lit": "^3.2.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"mapshaper": "^0.7.10",
"rollup": "^4.30.1",
"rollup-plugin-copy": "^3.5.0",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"vitest": "^3.2.6"
},
"overrides": {
"lodash": "^4.17.24",
"tmp": "^0.2.4",
"file-type": "^22.0.0"
}
}