package.json 706 B

1234567891011121314151617181920212223242526
  1. {
  2. "$schema": "https://json.schemastore.org/package.json",
  3. "version": "0.0.0",
  4. "name": "@opencode-ai/http-recorder",
  5. "type": "module",
  6. "license": "MIT",
  7. "private": true,
  8. "scripts": {
  9. "test": "bun test --timeout 30000",
  10. "test:ci": "mkdir -p .artifacts/unit && bun test --timeout 30000 --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml",
  11. "typecheck": "tsgo --noEmit"
  12. },
  13. "exports": {
  14. ".": "./src/index.ts",
  15. "./*": "./src/*.ts"
  16. },
  17. "devDependencies": {
  18. "@tsconfig/bun": "catalog:",
  19. "@types/bun": "catalog:",
  20. "@typescript/native-preview": "catalog:"
  21. },
  22. "dependencies": {
  23. "@effect/platform-node": "catalog:",
  24. "effect": "catalog:"
  25. }
  26. }