mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
JSON
{
|
|
"name": "shared",
|
|
"version": "2.6.0",
|
|
"description": "Gradido Shared Code, Low-Level Shared Code, without 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/shared",
|
|
"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",
|
|
"clear": "rm -rf node_modules && rm -rf build && rm -rf .turbo"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.0.0",
|
|
"@types/node": "^17.0.21",
|
|
"@types/uuid": "^10.0.0",
|
|
"typescript": "^4.9.5",
|
|
"uuid": "^8.3.2"
|
|
},
|
|
"dependencies": {
|
|
"decimal.js-light": "^2.5.1",
|
|
"esbuild": "^0.25.2",
|
|
"log4js": "^6.9.1",
|
|
"zod": "^3.25.61"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|