package.json 522 B

12345678910111213141516171819202122
  1. {
  2. "type": "module",
  3. "name": "opencode-gemini-tool",
  4. "version": "1.0.0",
  5. "description": "Gemini image editing tool for OpenCode",
  6. "main": "index.ts",
  7. "scripts": {
  8. "build": "bun build index.ts --outdir dist",
  9. "type-check": "tsc --noEmit",
  10. "test": "bun test.ts",
  11. "test:real": "bun test.ts"
  12. },
  13. "dependencies": {
  14. "@opencode-ai/sdk": "^0.10.0",
  15. "zod": "^4.1.9"
  16. },
  17. "devDependencies": {
  18. "@opencode-ai/plugin": "^0.10.0",
  19. "@types/node": "^24.2.1",
  20. "bun-types": "latest"
  21. }
  22. }