package.json 585 B

123456789101112131415161718192021222324
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/merman",
  4. "version": "0.0.0",
  5. "private": true,
  6. "type": "module",
  7. "exports": {
  8. "./plugin": "./src/plugin.ts"
  9. },
  10. "scripts": {
  11. "test": "bun test --timeout 30000 --only-failures",
  12. "typecheck": "tsgo --noEmit"
  13. },
  14. "dependencies": {
  15. "@opencode-ai/plugin": "workspace:*",
  16. "@opentui/core": "catalog:",
  17. "string-width": "catalog:"
  18. },
  19. "devDependencies": {
  20. "@tsconfig/bun": "catalog:",
  21. "@types/bun": "catalog:",
  22. "@typescript/native-preview": "catalog:"
  23. }
  24. }