{ "name": "@dorfteich/shared", "version": "0.0.0", "private": true, "description": "Types, schemas, and logic shared between web, api, and collab", "license": "MIT", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" }, "./i18n/*": "./i18n/*" }, "files": [ "dist", "i18n" ], "scripts": { "build": "tsup src/index.ts --format esm,cjs --dts --clean", "typecheck": "tsc --noEmit", "test": "vitest run --passWithNoTests" }, "dependencies": { "zod": "^3.24.0" }, "devDependencies": { "tsup": "^8.3.0", "vitest": "^3.0.0" } }