package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/plugin",
  4. "version": "1.17.11",
  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. "./tui": "./src/tui.ts",
  15. "./v2/effect": "./src/v2/effect/index.ts",
  16. "./v2/effect/integration": "./src/v2/effect/integration.ts",
  17. "./v2/effect/plugin": "./src/v2/effect/plugin.ts",
  18. "./v2/promise": "./src/v2/promise/index.ts"
  19. },
  20. "files": [
  21. "dist"
  22. ],
  23. "dependencies": {
  24. "@ai-sdk/provider": "3.0.8",
  25. "@opencode-ai/sdk": "workspace:*",
  26. "effect": "catalog:",
  27. "zod": "catalog:"
  28. },
  29. "peerDependencies": {
  30. "@opentui/core": ">=0.3.4",
  31. "@opentui/keymap": ">=0.3.4",
  32. "@opentui/solid": ">=0.3.4"
  33. },
  34. "peerDependenciesMeta": {
  35. "@opentui/core": {
  36. "optional": true
  37. },
  38. "@opentui/keymap": {
  39. "optional": true
  40. },
  41. "@opentui/solid": {
  42. "optional": true
  43. }
  44. },
  45. "devDependencies": {
  46. "@opentui/core": "catalog:",
  47. "@opentui/keymap": "catalog:",
  48. "@opentui/solid": "catalog:",
  49. "@tsconfig/node22": "catalog:",
  50. "@types/node": "catalog:",
  51. "typescript": "catalog:",
  52. "@typescript/native-preview": "catalog:"
  53. }
  54. }