package.json 895 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "name": "@opencode-ai/protocol",
  4. "version": "1.17.11",
  5. "type": "module",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "git+https://github.com/anomalyco/opencode.git",
  10. "directory": "packages/protocol"
  11. },
  12. "publishConfig": {
  13. "access": "public"
  14. },
  15. "files": [
  16. "dist"
  17. ],
  18. "exports": {
  19. "./*": "./src/*.ts"
  20. },
  21. "scripts": {
  22. "build": "bun run script/build.ts",
  23. "generate": "bun run script/generate-openapi.ts",
  24. "check:generated": "bun run script/generate-openapi.ts --check",
  25. "typecheck": "tsgo --noEmit"
  26. },
  27. "dependencies": {
  28. "@opencode-ai/schema": "workspace:*",
  29. "effect": "catalog:"
  30. },
  31. "devDependencies": {
  32. "@tsconfig/bun": "catalog:",
  33. "@types/bun": "catalog:",
  34. "@typescript/native-preview": "catalog:",
  35. "typescript": "catalog:"
  36. }
  37. }