package.json 741 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/server",
  4. "version": "1.18.4",
  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. "@opencode-ai/util": "workspace:*",
  21. "drizzle-orm": "catalog:",
  22. "effect": "catalog:"
  23. },
  24. "devDependencies": {
  25. "@tsconfig/bun": "catalog:",
  26. "@types/bun": "catalog:",
  27. "@typescript/native-preview": "catalog:"
  28. }
  29. }