mirror of https://github.com/buster-so/buster.git
35 lines
1.0 KiB
JSON
35 lines
1.0 KiB
JSON
{
|
|
"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": "tsx scripts/validate-env.ts",
|
|
"build": "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:"
|
|
}
|
|
}
|