{ "name": "config-schema", "version": "2.7.0", "description": "Gradido Config for validate config", "main": "./build/index.js", "types": "./src/index.ts", "exports": { ".": { "import": "./build/index.js", "require": "./build/index.js" } }, "repository": "https://github.com/gradido/gradido/config", "author": "Gradido Academy - https://www.gradido.net", "license": "Apache-2.0", "private": true, "scripts": { "build": "esbuild src/index.ts --outdir=build --sourcemap --platform=node --target=node18.20.7 --bundle --packages=external", "build:bun": "bun build src/index.ts --outdir=build --target=bun --packages=external", "typecheck": "tsc --noEmit", "test": "bun test", "test:debug": "bun test --inspect-brk", "lint": "biome check --error-on-warnings .", "lint:fix": "biome check --error-on-warnings . --write", "clear": "rm -rf node_modules && rm -rf build && rm -rf .turbo" }, "devDependencies": { "@biomejs/biome": "2.0.0", "@types/node": "^17.0.21", "jest": "27.2.4", "typescript": "^4.9.5" }, "dependencies": { "esbuild": "^0.25.2", "joi": "17.13.3", "log4js": "^6.9.1", "source-map-support": "^0.5.21", "yoctocolors-cjs": "^2.1.2", "zod": "^3.25.61" }, "engines": { "node": ">=18" } }