{
  "name": "@omnitron-dev/testing",
  "version": "0.2.0",
  "description": "Cross-runtime testing utilities",
  "author": "LuxQuant",
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./async": {
      "types": "./dist/async/index.d.ts",
      "import": "./dist/async/index.js",
      "require": "./dist/async/index.cjs"
    },
    "./docker": {
      "types": "./dist/docker/index.d.ts",
      "import": "./dist/docker/index.js",
      "require": "./dist/docker/index.cjs"
    },
    "./runtime/vitest": {
      "types": "./runtime/vitest.d.ts",
      "import": "./runtime/vitest.js",
      "require": "./runtime/vitest.js"
    },
    "./runtime/bun": {
      "types": "./runtime/bun.d.ts",
      "import": "./runtime/bun.js",
      "require": "./runtime/bun.js"
    },
    "./runtime/deno": {
      "types": "./dist/runtime/deno-adapter.d.ts",
      "import": "./dist/runtime/deno-adapter.js",
      "require": "./dist/runtime/deno-adapter.cjs"
    },
    "./runtime/node": {
      "types": "./dist/runtime/node-adapter.d.ts",
      "import": "./dist/runtime/node-adapter.js",
      "require": "./dist/runtime/node-adapter.cjs"
    },
    "./titan": {
      "types": "./dist/titan/index.d.ts",
      "import": "./dist/titan/index.js",
      "require": "./dist/titan/index.cjs"
    },
    "./helpers": {
      "types": "./dist/helpers/index.d.ts",
      "import": "./dist/helpers/index.js",
      "require": "./dist/helpers/index.cjs"
    },
    "./performance": {
      "types": "./dist/performance/index.d.ts",
      "import": "./dist/performance/index.js",
      "require": "./dist/performance/index.cjs"
    },
    "./env": {
      "types": "./dist/env.d.ts",
      "import": "./dist/env.js",
      "require": "./dist/env.cjs"
    }
  },
  "files": [
    "dist",
    "src",
    "runtime"
  ],
  "dependencies": {
    "@kysera/testing": "^0.8.8",
    "@types/node": "^25.6.0",
    "kysely": "0.28.17",
    "uuid": "^14.0.0"
  },
  "devDependencies": {
    "@types/bun": "^1.3.13",
    "ioredis": "^5.10.1",
    "pino": "^10.3.1",
    "typescript": "~5.9.3",
    "vitest": "^4.1.5",
    "zod": "^4.4.3"
  },
  "peerDependencies": {
    "bun": "*",
    "vitest": "^4.1.0",
    "@omnitron-dev/titan-database": "0.2.0",
    "@omnitron-dev/eventemitter": "0.2.0",
    "@omnitron-dev/titan-redis": "0.2.0",
    "@omnitron-dev/titan": "0.2.0",
    "@omnitron-dev/titan-pm": "0.2.0"
  },
  "peerDependenciesMeta": {
    "@omnitron-dev/eventemitter": {
      "optional": true
    },
    "@omnitron-dev/titan": {
      "optional": true
    },
    "@omnitron-dev/titan-database": {
      "optional": true
    },
    "@omnitron-dev/titan-pm": {
      "optional": true
    },
    "@omnitron-dev/titan-redis": {
      "optional": true
    },
    "bun": {
      "optional": true
    },
    "vitest": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=22.0.0",
    "bun": ">=1.2.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/devgrid/devgrid.git",
    "directory": "packages/testing"
  },
  "keywords": [
    "testing",
    "cross-runtime",
    "bun",
    "deno",
    "node",
    "vitest",
    "test-utilities"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "rm -rf dist node_modules/.tmp && tsc -p tsconfig.json",
    "build:titan": "rm -rf dist/titan && NODE_OPTIONS='--max-old-space-size=8192' tsc -p tsconfig.titan.json",
    "clean": "rm -rf dist *.tsbuildinfo",
    "lint": "eslint src --max-warnings=0",
    "lint:fix": "eslint src --fix",
    "test": "vitest run",
    "test:bun": "bun test src/**/*.test.ts",
    "test:deno": "deno test --allow-all src/**/*.test.ts",
    "typecheck": "tsc --noEmit"
  }
}