chore: bootstrap monorepo workspace and shared schemas

This commit is contained in:
Anton
2026-04-23 16:03:34 +03:00
commit 5f6a551b6c
15 changed files with 308 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{
"name": "@family-wishlist/shared",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "echo 'shared is source-only'",
"lint": "echo 'skip'",
"dev": "echo 'shared is source-only'"
},
"dependencies": {
"zod": "^3.23.8"
},
"devDependencies": {
"typescript": "^5.6.2"
}
}