mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"name": "@ktx/connector-postgres",
|
|
"version": "0.0.0-private",
|
|
"description": "PostgreSQL connector package for KTX scan interfaces",
|
|
"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": {
|
|
"@ktx/context": "workspace:*",
|
|
"pg": "^8.20.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.7.0",
|
|
"@types/pg": "^8.20.0",
|
|
"typescript": "^6.0.3",
|
|
"vitest": "^4.1.6"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/kaelio/ktx.git",
|
|
"directory": "packages/connector-postgres"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/kaelio/ktx/issues"
|
|
},
|
|
"homepage": "https://github.com/kaelio/ktx#readme"
|
|
}
|