package.json 573 B

123456789101112131415161718192021222324252627
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/plugin",
  4. "version": "0.15.31",
  5. "type": "module",
  6. "scripts": {
  7. "typecheck": "tsgo --noEmit",
  8. "build": "tsc"
  9. },
  10. "exports": {
  11. ".": "./src/index.ts",
  12. "./tool": "./src/tool.ts"
  13. },
  14. "files": [
  15. "dist"
  16. ],
  17. "dependencies": {
  18. "@opencode-ai/sdk": "workspace:*",
  19. "zod": "catalog:"
  20. },
  21. "devDependencies": {
  22. "@tsconfig/node22": "catalog:",
  23. "@types/node": "catalog:",
  24. "typescript": "catalog:",
  25. "@typescript/native-preview": "catalog:"
  26. }
  27. }