package.json 702 B

12345678910111213141516171819202122232425262728
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/server",
  4. "version": "1.17.20",
  5. "private": true,
  6. "type": "module",
  7. "license": "MIT",
  8. "exports": {
  9. "./*": "./src/*.ts"
  10. },
  11. "scripts": {
  12. "test": "bun test --only-failures",
  13. "typecheck": "tsgo --noEmit"
  14. },
  15. "dependencies": {
  16. "@effect/platform-node": "catalog:",
  17. "@opencode-ai/core": "workspace:*",
  18. "@opencode-ai/protocol": "workspace:*",
  19. "@opencode-ai/simulation": "workspace:*",
  20. "drizzle-orm": "catalog:",
  21. "effect": "catalog:"
  22. },
  23. "devDependencies": {
  24. "@tsconfig/bun": "catalog:",
  25. "@types/bun": "catalog:",
  26. "@typescript/native-preview": "catalog:"
  27. }
  28. }