-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.82 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.82 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "MMM-GeminiWallpaper",
"version": "1.0.1",
"description": "A module for MagicMirror² that automatically generates unique, photorealistic sports-themed wallpapers using Google Gemini AI (Model 2.5 Flash Image)",
"keywords": [
"MagicMirror",
"image",
"gemini",
"genAI",
"sports"
],
"homepage": "https://github.com/vigc0/MMM-GeminiWallpaper",
"bugs": {
"url": "https://github.com/vigc0/MMM-GeminiWallpaper/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vigc0/MMM-GeminiWallpaper.git"
},
"license": "MIT",
"author": "Carl Vigneault (https://github.com/vigc0)",
"contributors": [],
"main": "MMM-PublicTransportHafas.js",
"type": "commonjs",
"scripts": {
"lint": "eslint && prettier . --check",
"lint:fix": "eslint --fix && prettier . --write",
"postinstall": "simple-git-hooks",
"release": "commit-and-tag-version --config ./changelog.config.js",
"test": "node --run lint && node --run test:spelling",
"test:spelling": "cspell ."
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"dayjs": "^1.11.19",
"db-vendo-client": "^6.10.6",
"hafas-client": "^6.3.6"
},
"devDependencies": {
"@eslint/css": "^0.14.1",
"@eslint/js": "^9.39.1",
"@eslint/json": "^0.14.0",
"@eslint/markdown": "^7.5.1",
"@stylistic/eslint-plugin": "^5.6.1",
"commit-and-tag-version": "^12.6.0",
"cspell": "^9.3.2",
"eslint": "^9.39.1",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-package-json": "^0.85.0",
"globals": "^16.5.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.3",
"simple-git-hooks": "^2.13.1"
},
"engines": {
"node": ">=20"
}
}