-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.54 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": "obsidian-live-wallpaper",
"version": "1.0.0",
"description": "Your Obsidian vault graph as a live desktop wallpaper",
"author": "William Ricchiuti",
"homepage": "https://github.com/willytop8/obsidian-live-wallpaper#readme",
"repository": {
"type": "git",
"url": "https://github.com/willytop8/obsidian-live-wallpaper.git"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"SECURITY.md",
"config.example.json",
"index.html",
"settings.html",
"parser.js",
"worker.js",
"renderer-core.js",
"presets.json",
"bin/cli.js",
"linux-setup.md",
"macos-setup.md",
"windows-setup.md",
"vendor/",
"scripts/find-chrome.js",
"scripts/screenshot-presets.js",
"docs/presets/"
],
"keywords": [
"obsidian",
"wallpaper",
"graph",
"desktop",
"d3",
"live-wallpaper"
],
"main": "parser.js",
"bin": {
"obsidian-live-wallpaper": "bin/cli.js",
"olw": "bin/cli.js"
},
"scripts": {
"start": "node parser.js",
"smoke": "node scripts/smoke.js",
"smoke:render": "node scripts/smoke-render.js",
"test": "npm run smoke && npm run smoke:render",
"lint": "eslint parser.js bin/cli.js worker.js renderer-core.js scripts/*.js eslint.config.js",
"prepublishOnly": "npm run lint && npm test"
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"dependencies": {
"chokidar": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.6.0",
"globals": "^17.7.0"
}
}