38 lines
867 B
JSON
38 lines
867 B
JSON
{
|
|
"name": "typesafe-db",
|
|
"version": "11.0.1",
|
|
"license": "../LICENSE",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"kysely": "^0.28.2",
|
|
"pg": "^8.16.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"@types/pg": "^8.11.10",
|
|
"kysely-codegen": "^0.18.5",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"default": "./lib/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"dev": "tsc --watch",
|
|
"generate-types": "kysely-codegen",
|
|
"postinstall": "npm run build"
|
|
},
|
|
"kysely-codegen": {
|
|
"camelCase": true,
|
|
"outFile": "./src/types/types.d.ts",
|
|
"overrides": {
|
|
"columns": {
|
|
"customers.id_card_data": "{firstName:string, lastName:string}",
|
|
"edited_customer_data.id_card_data": "{firstName:string, lastName:string}"
|
|
}
|
|
}
|
|
}
|
|
}
|