package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/simulation",
  4. "version": "1.17.13",
  5. "private": true,
  6. "type": "module",
  7. "license": "MIT",
  8. "exports": {
  9. "./backend": "./src/backend/index.ts",
  10. "./backend/*": "./src/backend/*.ts",
  11. "./frontend": "./src/frontend/simulation.ts",
  12. "./frontend/*": "./src/frontend/*.ts",
  13. "./protocol": "./src/protocol/index.ts",
  14. "./recording": "./src/recording.ts"
  15. },
  16. "scripts": {
  17. "test": "bun test --timeout 30000 --only-failures",
  18. "typecheck": "tsgo -b"
  19. },
  20. "dependencies": {
  21. "@opencode-ai/core": "workspace:*",
  22. "@opencode-ai/ai": "workspace:*",
  23. "@opencode-ai/plugin": "workspace:*",
  24. "@opencode-ai/protocol": "workspace:*",
  25. "@opencode-ai/util": "workspace:*",
  26. "@opentui/core": "catalog:",
  27. "effect": "catalog:",
  28. "ws": "8.21.0"
  29. },
  30. "devDependencies": {
  31. "@tsconfig/bun": "catalog:",
  32. "@types/bun": "catalog:",
  33. "@types/ws": "8.18.1",
  34. "@typescript/native-preview": "catalog:"
  35. }
  36. }