package.json 963 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. "./simulation": "./src/simulation.ts",
  20. "./*": "./src/*.ts"
  21. },
  22. "scripts": {
  23. "build": "bun run script/build.ts",
  24. "generate": "bun run script/generate-openapi.ts",
  25. "check:generated": "bun run script/generate-openapi.ts --check",
  26. "typecheck": "tsgo --noEmit"
  27. },
  28. "dependencies": {
  29. "@opencode-ai/schema": "workspace:*",
  30. "effect": "catalog:"
  31. },
  32. "devDependencies": {
  33. "@tsconfig/bun": "catalog:",
  34. "@types/bun": "catalog:",
  35. "@typescript/native-preview": "catalog:",
  36. "prettier": "3.6.2",
  37. "typescript": "catalog:"
  38. }
  39. }