jabaho9523_obsidian-link-plus/package.json
Jacob Bak Holm 275f9a6e56 Drop redundant "Obsidian" from plugin description
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>
2026-05-21 09:38:19 +02:00

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"
}
}