blamouche_obsidian-any-ai-code/package.json
blamouche 1863b3e96b Rename plugin id to obsidian-any-ai-cli and bump to 0.1.35
The plugin was rebranded to "Any AI CLI" earlier in this branch, but
the manifest id remained obsidian-any-ai-code from the original name.
Aligning the id ahead of the community-store submission so the
community-plugins.json entry, the manifest id, the plugin folder name
and the release zip filename all match.

Updated:
- manifest.json id and version
- versions.json (added 0.1.35)
- package.json name and version
- package-lock.json (re-synced)
- .github/workflows/release.yml PLUGIN_ID env var
- README.md install paths and release-zip filename references

GitHub repo URLs (blamouche/obsidian-any-ai-code) are intentionally
unchanged — the repo itself is not being renamed at this time.

Existing local installs must rename their plugin folder from
.obsidian/plugins/obsidian-any-ai-code to .obsidian/plugins/obsidian-any-ai-cli
to keep the plugin discoverable.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-26 08:39:59 +02:00

34 lines
778 B
JSON

{
"name": "obsidian-any-ai-cli",
"version": "0.1.35",
"description": "Open your local Claude Code CLI inside an Obsidian right sidebar view",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"obsidian",
"plugin",
"claude",
"cli"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.17.30",
"builtin-modules": "^5.0.0",
"esbuild": "^0.25.3",
"obsidian": "latest",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"vitest": "^4.0.18"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"node-pty": "^1.1.0"
}
}