build: use pnpm for the deploy

This commit is contained in:
Rafael Taranto 2025-05-23 16:02:58 +01:00
parent 64e358f61c
commit bac8813a8d
36 changed files with 19068 additions and 29560 deletions

View file

@ -4,14 +4,23 @@
"license": "../LICENSE",
"type": "module",
"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": "tsc --build",
"start": "tsc --watch",
"clean": "rm -rf lib",
"generate-types": "kysely-codegen --camel-case --out-file ./src/types/types.d.ts"
"dev": "tsc --watch",
"generate-types": "kysely-codegen --camel-case --out-file ./src/types/types.d.ts",
"postinstall": "npm run build"
},
"dependencies": {
"kysely": "^0.28.2",