mirror of
https://github.com/algometrix/second_brain_builder.git
synced 2026-07-22 08:29:32 +00:00
- New "Create sub-note from selection" command and context menu entry: splits a selection into topics, generates linked notes in a sub-folder, with series cross-linking back to the parent note - README: lead with the no-extra-cost design (existing AI subscriptions via CLIs, or free local Ollama) plus a token usage caveat - Fix scripts can read OBSIDIAN_VAULT from a gitignored repo-root .env Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
22 lines
862 B
JSON
22 lines
862 B
JSON
{
|
|
"name": "second-brain-builder",
|
|
"version": "1.0.9",
|
|
"description": "Obsidian plugin that grows your vault into a linked knowledge graph using Claude Code, Gemini, Codex, or Ollama",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node scripts/sync-modes.js && node esbuild.config.mjs",
|
|
"build": "node scripts/sync-modes.js && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"build:release": "node scripts/sync-modes.js --sample && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production && node scripts/package-release.js"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@types/node": "^16.11.6",
|
|
"esbuild": "0.17.3",
|
|
"eslint": "^10.7.0",
|
|
"eslint-plugin-obsidianmd": "^0.4.1",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "^5.9.2",
|
|
"typescript-eslint": "^8.64.0"
|
|
}
|
|
}
|