* chore(deps): remove unused dependencies Removed @openauthjs/openauth, hono, open, and xdg-basedir - none are imported in src/ Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai> * chore(cleanup): remove unused agent prompts and tool files Deleted: - src/agents/build-prompt.ts (exports never imported) - src/agents/plan-prompt.ts (exports never imported) - src/tools/ast-grep/napi.ts (never imported) - src/tools/interactive-bash/types.ts (never imported) Verified by: LSP FindReferences + explore agents Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai> * chore(hooks): remove unused comment-checker filters Deleted entire filters/ directory: - filters/bdd.ts - filters/directive.ts - filters/docstring.ts - filters/shebang.ts - filters/index.ts Not used by main hook (cli.ts uses external binary instead) Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai> * chore(hooks): remove unused comment-checker output and constants Deleted: - output/formatter.ts - output/xml-builder.ts - output/index.ts - constants.ts All 0 external imports - migrated to external binary Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai> * chore(hooks): remove unused pruning subsystem Deleted pruning subsystem (dependency order): - pruning-purge-errors.ts - pruning-storage.ts - pruning-supersede.ts - pruning-executor.ts Not imported by main recovery hook Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai> * chore(hooks): remove unused createBackgroundCompactionHook export Removed export from index.ts - never imported in src/index.ts Verified by: LSP FindReferences (only 2 refs: definition + barrel export) Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai> --------- Co-authored-by: justsisyphus <sisyphus-dev-ai@users.noreply.github.com> Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
90 lines
2.7 KiB
JSON
90 lines
2.7 KiB
JSON
{
|
|
"name": "oh-my-opencode",
|
|
"version": "3.0.0-beta.8",
|
|
"description": "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"type": "module",
|
|
"bin": {
|
|
"oh-my-opencode": "./bin/oh-my-opencode.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"bin",
|
|
"postinstall.mjs"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./schema.json": "./dist/oh-my-opencode.schema.json"
|
|
},
|
|
"scripts": {
|
|
"build": "bun build src/index.ts --outdir dist --target bun --format esm --external @ast-grep/napi && tsc --emitDeclarationOnly && bun build src/cli/index.ts --outdir dist/cli --target bun --format esm --external @ast-grep/napi && bun run build:schema",
|
|
"build:all": "bun run build && bun run build:binaries",
|
|
"build:binaries": "bun run script/build-binaries.ts",
|
|
"build:schema": "bun run script/build-schema.ts",
|
|
"clean": "rm -rf dist",
|
|
"postinstall": "node postinstall.mjs",
|
|
"prepublishOnly": "bun run clean && bun run build",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "bun test"
|
|
},
|
|
"keywords": [
|
|
"opencode",
|
|
"plugin",
|
|
"oracle",
|
|
"librarian",
|
|
"agents",
|
|
"ai",
|
|
"llm"
|
|
],
|
|
"author": "YeonGyu-Kim",
|
|
"license": "SUL-1.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/code-yeongyu/oh-my-opencode.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/code-yeongyu/oh-my-opencode/issues"
|
|
},
|
|
"homepage": "https://github.com/code-yeongyu/oh-my-opencode#readme",
|
|
"dependencies": {
|
|
"@ast-grep/cli": "^0.40.0",
|
|
"@ast-grep/napi": "^0.40.0",
|
|
"@clack/prompts": "^0.11.0",
|
|
"@code-yeongyu/comment-checker": "^0.6.1",
|
|
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
"@opencode-ai/plugin": "^1.1.19",
|
|
"@opencode-ai/sdk": "^1.1.19",
|
|
"commander": "^14.0.2",
|
|
"detect-libc": "^2.0.0",
|
|
"js-yaml": "^4.1.1",
|
|
"jsonc-parser": "^3.3.1",
|
|
"picocolors": "^1.1.1",
|
|
"picomatch": "^4.0.2",
|
|
"zod": "^4.1.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/picomatch": "^3.0.2",
|
|
"bun-types": "latest",
|
|
"typescript": "^5.7.3"
|
|
},
|
|
"optionalDependencies": {
|
|
"oh-my-opencode-darwin-arm64": "3.0.0-beta.8",
|
|
"oh-my-opencode-darwin-x64": "3.0.0-beta.8",
|
|
"oh-my-opencode-linux-arm64": "3.0.0-beta.8",
|
|
"oh-my-opencode-linux-arm64-musl": "3.0.0-beta.8",
|
|
"oh-my-opencode-linux-x64": "3.0.0-beta.8",
|
|
"oh-my-opencode-linux-x64-musl": "3.0.0-beta.8",
|
|
"oh-my-opencode-windows-x64": "3.0.0-beta.8"
|
|
},
|
|
"trustedDependencies": [
|
|
"@ast-grep/cli",
|
|
"@ast-grep/napi",
|
|
"@code-yeongyu/comment-checker"
|
|
]
|
|
}
|