-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1009 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1009 Bytes
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
{
"name": "mmm-backgroundslideshow",
"version": "1.0.3",
"description": "Show on MagicMirror² fullscreen slideshow in background from images in a local folder. Great for a photo frame.",
"repository": {
"type": "git",
"url": "https://github.com/darickc/MMM-BackgroundSlideshow"
},
"keywords": [
"magicmirror",
"background",
"slideshow"
],
"author": {
"name": "darickc",
"url": "https://github.com/darickc"
},
"main": "MMM-BackgroundSlideshow.js",
"type": "commonjs",
"license": "MIT",
"dependencies": {
"exif-js": "^2.3.0",
"sharp": "^0.34.3"
},
"devDependencies": {
"@eslint/css": "^0.10.0",
"@eslint/js": "^9.31.0",
"@eslint/markdown": "^7.0.0",
"@stylistic/eslint-plugin": "^5.1.0",
"eslint": "^9.31.0",
"eslint-plugin-import-x": "^4.16.1",
"globals": "^16.3.0",
"prettier": "^3.6.2"
},
"scripts": {
"lint": "prettier --check . && eslint",
"lint:fix": "prettier --write . && eslint --fix"
}
}