mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
36 lines
924 B
JSON
36 lines
924 B
JSON
{
|
|
"name": "config-schema",
|
|
"version": "1.0.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": "bun build --outdir=build --platform=bun --bundle --packages=external src/index.ts",
|
|
"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",
|
|
"bun": "^1.2.11",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"dependencies": {
|
|
"joi": "^17.13.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|