moved to zod, packages messed up still

This commit is contained in:
Bojan Kucera 2025-06-07 14:24:28 -04:00
parent 15dd03c0ec
commit a8ee4022bf
35 changed files with 3245 additions and 691 deletions

View file

@ -2,14 +2,16 @@
"name": "@stock-bot/postgres-client",
"version": "1.0.0",
"description": "PostgreSQL client library for Stock Bot platform",
"main": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"test": "bun test",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit",
"dev": "tsc --watch"
"dev": "tsc --watch",
"clean": "rimraf dist"
},
"dependencies": {
"@stock-bot/config": "*",
@ -35,8 +37,13 @@
],
"exports": {
".": {
"import": "./src/index.ts",
"require": "./dist/index.js"
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
},
"files": [
"dist",
"README.md"
]
}