{ "name": "@gala/shared", "version": "1.0.0", "private": true, "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./types": { "types": "./dist/types/index.d.ts", "import": "./dist/types/index.js" }, "./constants": { "types": "./dist/constants/index.d.ts", "import": "./dist/constants/index.js" }, "./utils": { "types": "./dist/utils/index.d.ts", "import": "./dist/utils/index.js" } }, "scripts": { "build": "tsup src/index.ts src/types/index.ts src/constants/index.ts src/utils/index.ts --format esm --dts --clean", "dev": "tsup src/index.ts src/types/index.ts src/constants/index.ts src/utils/index.ts --format esm --dts --watch", "typecheck": "tsc --noEmit" }, "dependencies": { "zod": "^3.24.1" }, "devDependencies": { "tsup": "^8.3.5", "typescript": "^5.7.3" } }