binhong87_obsidian-note-agent/package.json
Bin-Home ff6940cbba feat: rename to Obsidian Note Agent, fix default model display in status bar and indicator
- Plugin id/name updated to obsidian-note-agent (Bin-Home)
- Class renamed ObsidianAgentPlugin → ObsidianNoteAgentPlugin throughout
- VIEW_TYPE and default chatsFolder path updated to match new id
- Status bar and provider indicator button now use activeProfile() so
  the default model name shows instead of "-" when no override is set
- Indicator button separator changed from " / " to ":" to match status bar
- Add README.md and README-cn.md

Co-Authored-By: Claude Sonnet 4 <noreply@anthropic.com>
2026-04-25 17:36:45 +08:00

35 lines
888 B
JSON

{
"name": "obsidian-note-agent",
"version": "1.0.0",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc --noEmit && node esbuild.config.mjs production",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@tsconfig/svelte": "^5.0.8",
"@types/node": "^20.19.39",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"esbuild": "^0.20.2",
"esbuild-svelte": "^0.8.2",
"eslint": "^8.57.1",
"eslint-plugin-svelte": "^2.46.1",
"obsidian": "^1.12.3",
"prettier": "^3.8.3",
"svelte": "^4.2.20",
"svelte-preprocess": "^5.1.4",
"tslib": "^2.8.1",
"typescript": "5.4",
"vitest": "^1.6.1"
}
}