package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/plugin",
  4. "version": "1.18.15",
  5. "type": "module",
  6. "license": "MIT",
  7. "scripts": {
  8. "test": "bun test --timeout 5000",
  9. "typecheck": "tsgo --noEmit",
  10. "build": "tsc -p tsconfig.build.json"
  11. },
  12. "exports": {
  13. ".": "./src/promise/index.ts",
  14. "./effect": "./src/effect/index.ts",
  15. "./tui": "./src/tui/index.ts",
  16. "./v1": "./src/v1/index.ts",
  17. "./*": "./src/*.ts"
  18. },
  19. "files": [
  20. "dist"
  21. ],
  22. "dependencies": {
  23. "@ai-sdk/provider": "3.0.8",
  24. "@opencode-ai/ai": "workspace:*",
  25. "@opencode-ai/client": "workspace:*",
  26. "@opencode-ai/protocol": "workspace:*",
  27. "@opencode-ai/schema": "workspace:*",
  28. "@opencode-ai/sdk": "1.18.5",
  29. "@standard-schema/spec": "catalog:",
  30. "effect": "catalog:",
  31. "zod": "catalog:"
  32. },
  33. "peerDependencies": {
  34. "@opencode-ai/theme": "workspace:*",
  35. "@opentui/core": ">=0.5.3",
  36. "@opentui/keymap": ">=0.5.3",
  37. "@opentui/solid": ">=0.5.3",
  38. "solid-js": ">=1.9.0"
  39. },
  40. "peerDependenciesMeta": {
  41. "@opencode-ai/theme": {
  42. "optional": true
  43. },
  44. "@opentui/core": {
  45. "optional": true
  46. },
  47. "@opentui/keymap": {
  48. "optional": true
  49. },
  50. "@opentui/solid": {
  51. "optional": true
  52. },
  53. "solid-js": {
  54. "optional": true
  55. }
  56. },
  57. "devDependencies": {
  58. "@opencode-ai/theme": "workspace:*",
  59. "@opentui/core": "catalog:",
  60. "@opentui/keymap": "catalog:",
  61. "@opentui/solid": "catalog:",
  62. "@tsconfig/bun": "catalog:",
  63. "@tsconfig/node22": "catalog:",
  64. "@types/node": "catalog:",
  65. "solid-js": "catalog:",
  66. "typescript": "catalog:",
  67. "@typescript/native-preview": "catalog:"
  68. }
  69. }