-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"name": "obsidian-synology-sync",
"version": "2026.0602.1",
"description": "Sync Obsidian vault to Synology NAS via File Station API",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"lint": "eslint .",
"test": "jest",
"check": "npm test -- --runInBand && npm run lint && npm run build",
"smoke:vault": "./scripts/smoke-vault.sh",
"smoke:obsidian-live": "node scripts/live-obsidian-smoke.mjs"
},
"keywords": [
"obsidian",
"synology",
"sync",
"nas"
],
"author": "ForkTheGhost",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.19",
"esbuild": "^0.25.12",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.3.0",
"globals": "^17.6.0",
"jest": "^30.4.2",
"obsidian": "^1.12.3",
"ts-jest": "^29.4.10",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.4"
},
"dependencies": {
"@isomorphic-git/lightning-fs": "^4.6.2",
"buffer": "^6.0.3",
"isomorphic-git": "^1.38.1",
"pako": "^2.1.0",
"tslib": "^2.8.1"
}
}