mirror of
https://github.com/jabaho9523/obsidian-link-plus.git
synced 2026-07-22 06:08:23 +00:00
The community-plugin review flagged manifest.json:6 — the word "Obsidian" is implied by the directory context. Bumped to 1.0.3. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "link-plus",
|
|
"version": "1.0.3",
|
|
"description": "Build a connected second brain. Find every unlinked mention in your vault and convert them to wikilinks — one click or batch. Grow your knowledge graph automatically.",
|
|
"main": "main.js",
|
|
"type": "module",
|
|
"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 ."
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"obsidian-plugin",
|
|
"obsidian-md",
|
|
"links",
|
|
"backlinks",
|
|
"unlinked-mentions",
|
|
"productivity",
|
|
"note-taking",
|
|
"knowledge-management",
|
|
"pkm",
|
|
"second-brain",
|
|
"knowledge-graph"
|
|
],
|
|
"author": "Jacob Holm",
|
|
"license": "0BSD",
|
|
"devDependencies": {
|
|
"@eslint/js": "9.30.1",
|
|
"@types/node": "^16.11.6",
|
|
"esbuild": "0.25.5",
|
|
"eslint-plugin-obsidianmd": "0.1.9",
|
|
"globals": "14.0.0",
|
|
"jiti": "2.6.1",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "8.35.1"
|
|
},
|
|
"dependencies": {
|
|
"obsidian": "latest"
|
|
}
|
|
}
|