shared zod types and drizzle schema

This commit is contained in:
Oliver Bryan
2025-12-13 21:36:32 +00:00
parent b2284b1b30
commit 9d381ca4ff
13 changed files with 1269 additions and 1987 deletions

View File

@@ -1,13 +1,24 @@
{
"name": "@issue/shared",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.17.1"
"name": "@issue/shared",
"version": "1.0.0",
"description": "Shared schemas and types for the issue monorepo",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.17.1",
"devDependencies": {
"typescript": "^5.8.3"
},
"dependencies": {
"drizzle-orm": "^0.45.0",
"drizzle-zod": "^0.5.1",
"zod": "^3.23.8"
}
}