{ "name": "@buster/rerank", "version": "0.1.0", "type": "module", "module": "src/index.ts", "description": "Reranking service for semantic search result ordering", "exports": { ".": { "types": "./src/index.ts", "default": "./src/index.ts" } }, "scripts": { "prebuild": "[ \"$SKIP_ENV_CHECK\" = \"true\" ] || tsx scripts/validate-env.ts", "build": "tsc", "build:dry-run": "tsc", "typecheck": "tsc --noEmit", "test": "vitest run", "test:unit": "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", "lint": "biome check --write", "lint:fix": "biome check --apply .", "format": "biome format .", "format:fix": "biome format --write ." }, "dependencies": { "@buster/env-utils": "workspace:*", "@buster/typescript-config": "workspace:*", "@buster/vitest-config": "workspace:*", "axios": "catalog:", "zod": "catalog:" } }