buster/packages/data-source/package.json

47 lines
1.5 KiB
JSON

{
"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": "tsx scripts/validate-env.ts",
"build": "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/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",
"pg": "catalog:",
"pg-cursor": "^2.15.3",
"snowflake-sdk": "^2.1.1"
},
"devDependencies": {
"@types/mssql": "^9.1.7",
"@types/pg-cursor": "^2.7.2"
}
}