package.json 532 B

123456789101112131415161718192021222324
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/server",
  4. "version": "1.4.4",
  5. "type": "module",
  6. "license": "MIT",
  7. "exports": {
  8. ".": "./src/index.ts",
  9. "./openapi": "./src/openapi.ts",
  10. "./definition": "./src/definition/index.ts",
  11. "./definition/api": "./src/definition/api.ts",
  12. "./api": "./src/api/index.ts"
  13. },
  14. "files": [
  15. "dist"
  16. ],
  17. "scripts": {
  18. "typecheck": "tsc --noEmit",
  19. "build": "tsc"
  20. },
  21. "devDependencies": {
  22. "typescript": "catalog:"
  23. }
  24. }