{
  "name": "@connectum/testing",
  "version": "1.2.0",
  "description": "Testing utilities for Connectum",
  "private": false,
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./parity": {
      "types": "./dist/parity.d.ts",
      "default": "./dist/parity.js"
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Connectum-Framework/connectum.git",
    "directory": "packages/testing"
  },
  "keywords": [
    "testing",
    "connectum",
    "test-utilities",
    "mocks"
  ],
  "author": "Highload.Zone",
  "license": "Apache-2.0",
  "engines": {
    "node": ">=22.13.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@bufbuild/protobuf": "^2.12.1",
    "@connectrpc/connect": "^2.1.2",
    "@connectrpc/connect-node": "^2.1.2",
    "@opentelemetry/api": "^1.9.0",
    "@opentelemetry/sdk-metrics": "^2.8.0",
    "@opentelemetry/sdk-trace-base": "^2.8.0",
    "@connectum/core": "^1.2.0",
    "@connectum/test-fixtures": "^1.2.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.5.0",
    "@exodus/test": "^1.0.0-rc.116",
    "c8": "^10.1.3",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "@connectum/interceptors": "^1.2.0"
  },
  "scripts": {
    "dev": "node --watch src/index.ts",
    "typecheck": "tsc --noEmit",
    "test": "exodus-test --typescript tests/**/*.test.ts",
    "test:integration": "exodus-test --typescript tests/integration/**/*.test.ts",
    "test:bun": "exodus-test --engine bun:pure tests/**/*.test.ts",
    "test:esbuild": "exodus-test --esbuild tests/**/*.test.ts",
    "lint": "biome check src",
    "format": "biome check --write src",
    "build": "tsup",
    "clean": "rm -rf coverage dist"
  }
}