package.json 627 B

1234567891011121314151617181920212223
  1. {
  2. "name": "oh-my-opencode-lite",
  3. "version": "0.1.0",
  4. "description": "Minimal agent orchestration plugin for OpenCode",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "type": "module",
  8. "scripts": {
  9. "build": "bun build src/index.ts --outdir dist --target bun --format esm && tsc --emitDeclarationOnly",
  10. "typecheck": "tsc --noEmit",
  11. "test": "bun test",
  12. "dev": "bun run build && opencode"
  13. },
  14. "dependencies": {
  15. "@opencode-ai/plugin": "^1.1.19",
  16. "@opencode-ai/sdk": "^1.1.19",
  17. "zod": "^4.1.8"
  18. },
  19. "devDependencies": {
  20. "bun-types": "latest",
  21. "typescript": "^5.7.3"
  22. }
  23. }