package.json 593 B

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