2025-09-02 21:50:43 +08:00
|
|
|
{
|
|
|
|
"name": "@buster/search",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"type": "module",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"default": "./dist/index.js"
|
|
|
|
},
|
|
|
|
"./*": {
|
|
|
|
"types": "./dist/*.d.ts",
|
|
|
|
"default": "./dist/*.js"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"prebuild": "[ \"$SKIP_ENV_CHECK\" = \"true\" ] || tsx scripts/validate-env.ts",
|
|
|
|
"build": "tsc",
|
|
|
|
"build:dry-run": "tsc",
|
|
|
|
"typecheck": "tsc --noEmit",
|
|
|
|
"dev": "tsc --watch",
|
|
|
|
"lint": "biome check --write",
|
|
|
|
"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"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@buster/typescript-config": "workspace:*",
|
|
|
|
"@buster/vitest-config": "workspace:*",
|
|
|
|
"@buster/env-utils": "workspace:*",
|
2025-09-05 23:45:17 +08:00
|
|
|
"@buster/data-source": "workspace:*",
|
|
|
|
"@buster/database": "workspace:*",
|
2025-09-16 04:01:55 +08:00
|
|
|
"@buster/server-shared": "workspace:*",
|
2025-09-02 21:50:43 +08:00
|
|
|
"@turbopuffer/turbopuffer": "^1.0.0",
|
|
|
|
"zod": "^3.22.4"
|
2025-09-11 23:40:43 +08:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"@duckdb/node-api": "1.3.2-alpha.26"
|
2025-09-02 21:50:43 +08:00
|
|
|
}
|
2025-09-03 00:00:59 +08:00
|
|
|
}
|