{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@coda/search-service",
  "version": "1.0.0",
  "private": true,
  "type": "module",
  "engines": {
    "node": ">=24.0.0"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "dev": "tsx watch --env-file=.env src/index.ts",
    "build": "tsdown",
    "start": "node dist/index.mjs",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src/ --max-warnings 0",
    "format": "prettier . --write --log-level warn",
    "format:check": "prettier . --check",
    "test:unit": "vitest run --passWithNoTests",
    "test:functional": "vitest run --config vitest.config.functional.ts --passWithNoTests",
    "test:integration": "vitest run --config vitest.config.integration.ts --passWithNoTests",
    "test": "pnpm test:unit --coverage",
    "benchmark": "tsx benchmarks/run.ts",
    "benchmark:update": "tsx benchmarks/run.ts --update-baseline",
    "trace": "tsx --env-file=.env scripts/trace-query.ts"
  },
  "dependencies": {
    "@aws-sdk/client-s3": "^3.953.0",
    "@bufbuild/protobuf": "^2.3.0",
    "@coda/async": "workspace:*",
    "@coda/data-structures": "workspace:*",
    "@coda/api-common": "workspace:*",
    "@coda/search": "workspace:*",
    "@connectrpc/connect": "^2.0.2",
    "@connectrpc/connect-express": "^2.0.2",
    "@connectrpc/connect-node": "^2.0.2",
    "@huggingface/transformers": "^3.8.1",
    "@coda/common": "workspace:*",
    "@coda/extensions": "workspace:*",
    "@coda/search-api": "workspace:*",
    "@sentry/node": "^10.34.0",
    "dd-trace": "^5.91.0",
    "dotenv": "^17.3.1",
    "express": "^4.21.2",
    "express-rate-limit": "^8.3.1",
    "graphql": "^16.13.1",
    "pino": "^10.3.1",
    "pino-http": "^11.0.0",
    "snowflake-sdk": "^2.3.4",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@types/express": "^4.17.21",
    "@types/node": "^24.0.0",
    "@types/snowflake-sdk": "^1.6.24",
    "eslint": "^10.0.3",
    "tsdown": "^0.21.7",
    "tsx": "^4.19.0",
    "typescript": "~5.9.3"
  }
}
