Files
family_wishlist/packages/shared/package.json
2026-04-27 22:54:06 +03:00

27 lines
529 B
JSON

{
"name": "@family-wishlist/shared",
"version": "0.3.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.json",
"lint": "echo 'skip'",
"dev": "tsc -p tsconfig.json --watch"
},
"dependencies": {
"zod": "^3.23.8"
},
"devDependencies": {
"typescript": "^5.6.2"
}
}