package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "oh-my-opencode-slim",
  3. "version": "1.0.3",
  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. "src/skills",
  34. "oh-my-opencode-slim.schema.json",
  35. "README.md",
  36. "LICENSE"
  37. ],
  38. "scripts": {
  39. "build:plugin": "bun build src/index.ts --outdir dist --target node --format esm --external @ast-grep/napi --external @opencode-ai/plugin --external @opencode-ai/sdk --external jsdom --external zod",
  40. "build:cli": "bun build src/cli/index.ts --outdir dist/cli --target node --format esm --external @ast-grep/napi --external @opencode-ai/plugin --external @opencode-ai/sdk --external jsdom --external zod",
  41. "build": "bun run build:plugin && bun run build:cli && tsc --emitDeclarationOnly && bun run generate-schema",
  42. "prepare": "bun run build",
  43. "contributors:add": "all-contributors add",
  44. "contributors:check": "all-contributors check",
  45. "contributors:generate": "all-contributors generate",
  46. "generate-schema": "bun run scripts/generate-schema.ts",
  47. "verify:release": "bun run scripts/verify-release-artifact.ts",
  48. "verify:host-smoke": "bun run scripts/verify-opencode-host-smoke.ts",
  49. "typecheck": "tsc --noEmit",
  50. "test": "bun test",
  51. "lint": "biome lint .",
  52. "format": "biome format . --write",
  53. "check": "biome check --write .",
  54. "check:ci": "biome check .",
  55. "dev": "bun run build && opencode",
  56. "prepublishOnly": "bun run build",
  57. "release:patch": "npm version patch && git push --follow-tags && npm publish",
  58. "release:minor": "npm version minor && git push --follow-tags && npm publish",
  59. "release:major": "npm version major && git push --follow-tags && npm publish"
  60. },
  61. "dependencies": {
  62. "@ast-grep/cli": "^0.42.1",
  63. "@modelcontextprotocol/sdk": "^1.29.0",
  64. "@mozilla/readability": "^0.6.0",
  65. "@opencode-ai/plugin": "^1.3.17",
  66. "@opencode-ai/sdk": "^1.3.17",
  67. "jsdom": "^26.1.0",
  68. "lru-cache": "^11.3.3",
  69. "turndown": "^7.2.4"
  70. },
  71. "devDependencies": {
  72. "@biomejs/biome": "2.4.11",
  73. "@types/jsdom": "^21.1.7",
  74. "@types/node": "^24.6.1",
  75. "@types/turndown": "^5.0.6",
  76. "all-contributors-cli": "^6.26.1",
  77. "bun-types": "1.3.12",
  78. "typescript": "^5.9.3",
  79. "zod": "^4.3.6"
  80. },
  81. "peerDependencies": {
  82. "zod": "^4.0.0"
  83. },
  84. "trustedDependencies": [
  85. "@ast-grep/cli"
  86. ]
  87. }