{ "name": "@buster/data-source", "version": "1.0.0", "description": "Data source abstraction layer for multiple database types", "license": "MIT", "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } }, "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "prebuild": "[ \"$SKIP_ENV_CHECK\" = \"true\" ] || tsx scripts/validate-env.ts", "build": "tsc", "build:dry-run": "tsc", "build:commonjs": "tsc --module commonjs --moduleResolution node", "build:commonjs:watch": "npm run build:commonjs && tsc --module commonjs --moduleResolution node --watch", "lint": "biome check --write", "lint:fix": "biome check --write", "test": "vitest run", "test:coverage": "vitest run --coverage", "test:integration": "vitest run **/*.int.test.ts **/*.integration.test.ts", "test:introspection": "vitest run tests/integration/data-source-introspection.test.ts", "test:unit": "vitest run --exclude '**/*.int.test.ts' --exclude '**/*.integration.test.ts' --passWithNoTests", "test:watch": "vitest", "typecheck": "tsc --noEmit" }, "dependencies": { "@buster/env-utils": "workspace:*", "@buster/server-shared": "workspace:*", "@buster/typescript-config": "workspace:*", "@buster/vitest-config": "workspace:*", "@google-cloud/bigquery": "^8.1.0", "@types/pg": "^8.15.4", "mssql": "^11.0.1", "mysql2": "^3.14.1", "node-sql-parser": "^5.3.11", "pg": "catalog:", "pg-cursor": "^2.15.3", "snowflake-sdk": "^2.1.1", "zod": "^3.23.8" }, "devDependencies": { "@types/mssql": "^9.1.7", "@types/pg-cursor": "^2.7.2" } }