{ "name": "@elizaos/plugin-sub-agent-claude-code", "version": "0.0.1", "description": "Reference remote-mode sub-agent plugin: drives the Claude Code CLI inside an isolated Bun subprocess and exposes session/prompt/output/terminate via host-callable service methods.", "type": "module", "main": "./dist/plugin.js", "license": "MIT", "private": true, "files": [ "dist" ], "scripts": { "clean": "node ../scripts/rm-path-recursive.mjs dist", "build": "node ../scripts/rm-path-recursive.mjs dist tsconfig.build.tsbuildinfo && tsc --noCheck -p tsconfig.build.json", "typecheck": "tsgo --noEmit -p tsconfig.json", "test": "bun test src/", "lint": "bunx @biomejs/biome check --write --unsafe src", "lint:check": "bunx @biomejs/biome check src", "lint:fix": "bunx @biomejs/biome check --write --unsafe src", "format": "bunx @biomejs/biome format --write src", "format:check": "bunx @biomejs/biome format src" }, "dependencies": { "@elizaos/plugin-remote-manifest": "workspace:*" }, "devDependencies": { "bun-types": "^1.3.12", "typescript": "^6.0.3" }, "exports": { ".": { "types": "./dist/plugin.d.ts", "import": "./dist/plugin.js", "default": "./dist/plugin.js" }, "./worker": { "types": "./dist/worker.d.ts", "import": "./dist/worker.js", "default": "./dist/worker.js" } } }