package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. "@opentui/core": ">=0.4.5",
  34. "@opentui/keymap": ">=0.4.5",
  35. "@opentui/solid": ">=0.4.5",
  36. "solid-js": ">=1.9.0"
  37. },
  38. "peerDependenciesMeta": {
  39. "@opentui/core": {
  40. "optional": true
  41. },
  42. "@opentui/keymap": {
  43. "optional": true
  44. },
  45. "@opentui/solid": {
  46. "optional": true
  47. },
  48. "solid-js": {
  49. "optional": true
  50. }
  51. },
  52. "devDependencies": {
  53. "@opentui/core": "catalog:",
  54. "@opentui/keymap": "catalog:",
  55. "@opentui/solid": "catalog:",
  56. "@tsconfig/bun": "catalog:",
  57. "@tsconfig/node22": "catalog:",
  58. "@types/node": "catalog:",
  59. "solid-js": "catalog:",
  60. "typescript": "catalog:",
  61. "@typescript/native-preview": "catalog:"
  62. }
  63. }