package.json 943 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/plugin",
  4. "version": "1.4.3",
  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. },
  16. "files": [
  17. "dist"
  18. ],
  19. "dependencies": {
  20. "@opencode-ai/sdk": "workspace:*",
  21. "effect": "catalog:",
  22. "zod": "catalog:"
  23. },
  24. "peerDependencies": {
  25. "@opentui/core": ">=0.1.99",
  26. "@opentui/solid": ">=0.1.99"
  27. },
  28. "peerDependenciesMeta": {
  29. "@opentui/core": {
  30. "optional": true
  31. },
  32. "@opentui/solid": {
  33. "optional": true
  34. }
  35. },
  36. "devDependencies": {
  37. "@opentui/core": "0.1.99",
  38. "@opentui/solid": "0.1.99",
  39. "@tsconfig/node22": "catalog:",
  40. "@types/node": "catalog:",
  41. "typescript": "catalog:",
  42. "@typescript/native-preview": "catalog:"
  43. }
  44. }