1
0

package.json 938 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. "typescript": "catalog:"
  37. }
  38. }