-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.3 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
{
"name": "obsidian-notes-bridge",
"version": "0.2.2",
"description": "Obsidian plugin that exports notes as portable Markdown and bridges your vault with Bear, WPS Cloud Note, Youdao Note, Flomo, Yinxiang, WeKnora, and IMA.",
"main": "main.js",
"type": "module",
"pnpm": {
"onlyBuiltDependencies": ["esbuild"]
},
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint .",
"test": "node --test --import tsx 'src/**/*.test.ts'"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"import",
"export",
"markdown",
"bear",
"wps",
"youdao",
"flomo",
"yinxiang",
"weknora",
"ima",
"mcp"
],
"license": "0-BSD",
"devDependencies": {
"@types/node": "^20.11.0",
"esbuild": "0.25.5",
"eslint-plugin-obsidianmd": "0.1.9",
"globals": "14.0.0",
"tslib": "2.4.0",
"tsx": "^4.7.0",
"typescript": "^5.8.3",
"typescript-eslint": "8.35.1",
"@eslint/js": "9.30.1",
"jiti": "2.6.1"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"obsidian": "latest",
"remark-frontmatter": "^5.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.0",
"unist-util-visit": "^5.0.0"
}
}