{ "name": "@buster/test-utils", "version": "0.1.0", "type": "module", "module": "src/index.ts", "exports": { ".": { "types": "./src/index.ts", "default": "./src/index.ts" }, "./*": { "types": "./src/*", "default": "./src/*" } }, "scripts": { "prebuild": "[ \"$SKIP_ENV_CHECK\" = \"true\" ] || tsx scripts/validate-env.ts", "build": "tsc", "build:dry-run": "tsc", "typecheck": "tsc --noEmit", "lint": "biome check --write", "test": "vitest run", "test:unit": "DATABASE_URL=postgresql://test:test@localhost:5432/test vitest run --exclude '**/*.int.test.ts' --exclude '**/*.integration.test.ts' --passWithNoTests", "test:integration": "vitest run **/*.int.test.ts **/*.integration.test.ts", "test:watch": "vitest watch", "test:coverage": "vitest run --coverage" }, "dependencies": { "@buster/database": "workspace:*", "@buster/env-utils": "workspace:*", "@buster/typescript-config": "workspace:*", "@buster/vitest-config": "workspace:*", "uuid": "catalog:" } }