package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "oh-my-opencode-slim",
  3. "version": "0.1.0",
  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. "@opencode-ai/plugin": "^1.1.19",
  45. "@opencode-ai/sdk": "^1.1.19",
  46. "zod": "^4.1.8"
  47. },
  48. "devDependencies": {
  49. "bun-types": "latest",
  50. "typescript": "^5.7.3"
  51. }
  52. }