package.json 530 B

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