-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.04 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
{
"name": "obsidian-sync",
"version": "0.3.0",
"description": "Sync your vault to a private memory that any AI reads and writes over MCP: Claude, ChatGPT, Cursor, and any MCP client share the same Markdown you own.",
"private": true,
"type": "module",
"main": "main.js",
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"type-check": "tsc --noEmit -skipLibCheck",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "vitest run",
"test:e2e": "vitest run test/integration",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf main.js *.map coverage",
"version": "node scripts/version-bump.mjs && git add manifest.json versions.json",
"check:hosts": "node scripts/check-hosts.mjs",
"check:docs": "node scripts/check-docs.mjs",
"check:bundle": "node scripts/check-bundle.mjs",
"verify": "npm run type-check && npm run lint && npm run format:check && npm run test && npm run build && npm run check:hosts && npm run check:docs && npm run check:bundle"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"agentage",
"mcp",
"sync"
],
"author": "agentage",
"license": "MIT",
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^26.1.0",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"@vitest/coverage-v8": "^4.1.9",
"builtin-modules": "^5.3.0",
"esbuild": "^0.28.1",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-obsidianmd": "0.4.1",
"eslint-plugin-prettier": "^5.5.6",
"obsidian": "latest",
"prettier": "^3.9.6",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"dependencies": {
"diff3": "^0.0.4",
"isomorphic-git": "^1.40.0",
"js-yaml": "^5.2.2"
}
}