algometrix_second_brain_bui.../package.json
algometrix 18147c27d8 Add sub-note creation, README cost focus, .env vault path; bump to 1.0.9
- 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>
2026-07-18 01:28:47 -04:00

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