package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "oh-my-opencode-slim",
  3. "version": "0.3.2",
  4. "description": "Lightweight agent orchestration plugin for OpenCode - a slimmed-down fork of oh-my-opencode",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "bin": {
  8. "oh-my-opencode-slim": "./dist/cli/index.js"
  9. },
  10. "type": "module",
  11. "license": "MIT",
  12. "keywords": [
  13. "opencode",
  14. "opencode-plugin",
  15. "ai",
  16. "agents",
  17. "orchestration",
  18. "llm",
  19. "claude",
  20. "gpt",
  21. "gemini"
  22. ],
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/alvinunreal/oh-my-opencode-slim"
  26. },
  27. "bugs": {
  28. "url": "https://github.com/alvinunreal/oh-my-opencode-slim/issues"
  29. },
  30. "homepage": "https://github.com/alvinunreal/oh-my-opencode-slim#readme",
  31. "files": [
  32. "dist",
  33. "README.md",
  34. "LICENSE"
  35. ],
  36. "scripts": {
  37. "build": "bun build src/index.ts --outdir dist --target bun --format esm && bun build src/cli/index.ts --outdir dist/cli --target bun --format esm && tsc --emitDeclarationOnly",
  38. "typecheck": "tsc --noEmit",
  39. "test": "bun test",
  40. "dev": "bun run build && opencode",
  41. "prepublishOnly": "bun run build"
  42. },
  43. "dependencies": {
  44. "@ast-grep/cli": "^0.40.0",
  45. "@modelcontextprotocol/sdk": "^1.25.1",
  46. "@opencode-ai/plugin": "^1.1.19",
  47. "@opencode-ai/sdk": "^1.1.19",
  48. "zod": "^4.1.8"
  49. },
  50. "devDependencies": {
  51. "bun-types": "latest",
  52. "typescript": "^5.7.3"
  53. },
  54. "trustedDependencies": [
  55. "@ast-grep/cli"
  56. ]
  57. }