mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"name": "core",
|
|
"version": "2.6.0",
|
|
"description": "Gradido Core Code, High-Level Shared Code, with dependencies on other modules",
|
|
"main": "./build/index.js",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./build/index.js",
|
|
"require": "./build/index.js"
|
|
}
|
|
},
|
|
"repository": "https://github.com/gradido/gradido/core",
|
|
"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",
|
|
"build:bun": "bun build src/index.ts --outdir=build --target=bun --packages=external",
|
|
"test": "bun test",
|
|
"test:debug": "bun test --inspect-brk",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "biome check --error-on-warnings .",
|
|
"lint:fix": "biome check --error-on-warnings . --write"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.0.0",
|
|
"@types/node": "^17.0.21",
|
|
"type-graphql": "^1.1.1",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"dependencies": {
|
|
"database": "*",
|
|
"esbuild": "^0.25.2",
|
|
"jose": "^4.14.4",
|
|
"log4js": "^6.9.1",
|
|
"zod": "^3.25.61"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|