| 1234567891011121314151617181920212223242526 |
- {
- "$schema": "https://json.schemastore.org/package.json",
- "version": "0.0.0",
- "name": "@opencode-ai/http-recorder",
- "type": "module",
- "license": "MIT",
- "private": true,
- "scripts": {
- "test": "bun test --timeout 30000",
- "test:ci": "mkdir -p .artifacts/unit && bun test --timeout 30000 --reporter=junit --reporter-outfile=.artifacts/unit/junit.xml",
- "typecheck": "tsgo --noEmit"
- },
- "exports": {
- ".": "./src/index.ts",
- "./*": "./src/*.ts"
- },
- "devDependencies": {
- "@tsconfig/bun": "catalog:",
- "@types/bun": "catalog:",
- "@typescript/native-preview": "catalog:"
- },
- "dependencies": {
- "@effect/platform-node": "catalog:",
- "effect": "catalog:"
- }
- }
|