package.json 623 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/plugin",
  4. "version": "1.1.65",
  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. "@opentui/core": "0.1.79",
  20. "@opencode-ai/sdk": "workspace:*",
  21. "zod": "catalog:"
  22. },
  23. "devDependencies": {
  24. "@tsconfig/node22": "catalog:",
  25. "@types/node": "catalog:",
  26. "typescript": "catalog:",
  27. "@typescript/native-preview": "catalog:"
  28. }
  29. }