gradido/config-schema/package.json
Einhornimmond d8a6f1529b mid-work
2025-05-07 16:11:38 +02:00

37 lines
968 B
JSON

{
"name": "config-schema",
"version": "1.0.0",
"description": "Gradido Config for validate config",
"main": "./build/index.js",
"types": "./src/index.ts",
"type": "module",
"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 --platform=node --target=node18.20.7 --bundle --packages=external",
"typecheck": "tsc --noEmit",
"lint": "biome check --error-on-warnings .",
"lint:fix": "biome check --error-on-warnings . --write"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^17.0.21",
"typescript": "^4.9.5"
},
"dependencies": {
"joi": "^17.13.3",
"esbuild": "^0.25.2"
},
"engines": {
"node": ">=18"
}
}