typeorm-config/package.json
QuinnFTW f29d205913
Some checks failed
Build and Publish / build-and-publish (push) Failing after 47s
deps-upgrade(deps): ⬆️ Update dependency versions to latest stable releases
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 04:14:16 -07:00

57 lines
1.4 KiB
JSON

{
"name": "@lilith/typeorm-config",
"type": "module",
"version": "1.0.45",
"description": "Database configuration factory for TypeORM with NestJS integration",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "git config core.hooksPath .githooks || true",
"build": "tsup",
"lint": "eslint src --fix",
"lint:check": "eslint src",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/typeorm": "^10.0.0 || ^11.0.0",
"typeorm": "^0.3.0"
},
"peerDependenciesMeta": {
"@nestjs/common": {
"optional": true
},
"@nestjs/typeorm": {
"optional": true
}
},
"devDependencies": {
"@lilith/configs": "workspace:*",
"@nestjs/typeorm": "^11.0.0",
"@types/node": "^20.19.28",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.7.4",
"tsup": "^8.5.1",
"typeorm": "^0.3.28",
"typescript": "^5.9.3"
},
"files": [
"dist"
],
"license": "MIT",
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}