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

@ -1,12 +1,21 @@
{
"name": "@stock-bot/types",
"version": "1.0.0",
"version": "1.0.0",
"description": "Shared type definitions for Stock Bot platform",
"main": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"type-check": "tsc --noEmit"
"type-check": "tsc --noEmit",
"dev": "tsc --watch",
"clean": "rimraf dist",
"test": "bun test"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.3.0",
"bun-types": "^1.2.15"
},
"keywords": [
"types",
@ -15,8 +24,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"
]
}