typeorm-migrations/package.json
QuinnFTW eed6ef4c9f
Some checks failed
Build and Publish / build-and-publish (push) Failing after 31s
deps-upgrade(deps): ⬆️ Update dependencies to latest stable versions for bug fixes and performance improvements
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 04:15:14 -07:00

55 lines
1.3 KiB
JSON

{
"name": "@lilith/typeorm-migrations",
"type": "module",
"version": "1.0.32",
"description": "Migration utilities and CLI for TypeORM",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"typeorm-migrate": "./dist/bin/migrate.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"prepare": "git config core.hooksPath .githooks || true",
"build": "tsup",
"lint": "eslint src bin --fix",
"lint:check": "eslint src bin",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"typeorm": "^0.3.0"
},
"devDependencies": {
"@lilith/configs": "workspace:*",
"@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.3.5",
"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
}
}