mirror of
https://github.com/blamouche/obsidian-any-ai-code.git
synced 2026-07-22 06:53:38 +00:00
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>
34 lines
778 B
JSON
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"
|
|
}
|
|
}
|