package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/plugin",
  4. "version": "1.18.8",
  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/schema": "workspace:*",
  27. "@opencode-ai/sdk": "1.18.5",
  28. "@standard-schema/spec": "catalog:",
  29. "effect": "catalog:",
  30. "zod": "catalog:"
  31. },
  32. "peerDependencies": {
  33. "@opencode-ai/theme": "workspace:*",
  34. "@opentui/core": ">=0.4.5",
  35. "@opentui/keymap": ">=0.4.5",
  36. "@opentui/solid": ">=0.4.5",
  37. "solid-js": ">=1.9.0"
  38. },
  39. "peerDependenciesMeta": {
  40. "@opencode-ai/theme": {
  41. "optional": true
  42. },
  43. "@opentui/core": {
  44. "optional": true
  45. },
  46. "@opentui/keymap": {
  47. "optional": true
  48. },
  49. "@opentui/solid": {
  50. "optional": true
  51. },
  52. "solid-js": {
  53. "optional": true
  54. }
  55. },
  56. "devDependencies": {
  57. "@opencode-ai/theme": "workspace:*",
  58. "@opentui/core": "catalog:",
  59. "@opentui/keymap": "catalog:",
  60. "@opentui/solid": "catalog:",
  61. "@tsconfig/bun": "catalog:",
  62. "@tsconfig/node22": "catalog:",
  63. "@types/node": "catalog:",
  64. "solid-js": "catalog:",
  65. "typescript": "catalog:",
  66. "@typescript/native-preview": "catalog:"
  67. }
  68. }