2026-05-10 23:12:26 +02:00
|
|
|
{
|
2026-05-10 23:51:24 +02:00
|
|
|
"name": "@ktx/connector-sqlserver",
|
2026-05-10 23:12:26 +02:00
|
|
|
"version": "0.0.0-private",
|
2026-05-10 23:51:24 +02:00
|
|
|
"description": "SQL Server connector package for KTX scan interfaces",
|
2026-05-10 23:12:26 +02:00
|
|
|
"private": true,
|
|
|
|
|
"type": "module",
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=22.0.0"
|
|
|
|
|
},
|
|
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"import": "./dist/index.js",
|
|
|
|
|
"default": "./dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"./package.json": "./package.json"
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc -p tsconfig.json",
|
|
|
|
|
"test": "vitest run",
|
|
|
|
|
"type-check": "tsc -p tsconfig.json --noEmit"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-05-10 23:51:24 +02:00
|
|
|
"@ktx/context": "workspace:*",
|
2026-05-10 23:12:26 +02:00
|
|
|
"mssql": "^12.2.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/mssql": "^9.1.8",
|
|
|
|
|
"@types/node": "^24.3.0",
|
|
|
|
|
"typescript": "^5.9.3",
|
|
|
|
|
"vitest": "^4.0.18"
|
|
|
|
|
},
|
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/kaelio/ktx.git",
|
|
|
|
|
"directory": "packages/connector-sqlserver"
|
|
|
|
|
},
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/kaelio/ktx/issues"
|
|
|
|
|
},
|
|
|
|
|
"homepage": "https://github.com/kaelio/ktx#readme"
|
|
|
|
|
}
|