gitignore

This commit is contained in:
2026-02-18 14:58:21 +01:00
parent b069d047ec
commit d4ad5d9c61
6 changed files with 1168 additions and 0 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "migration_tool",
"version": "1.0.0",
"description": "Herramienta de migracion de bdd",
"main": "src/index.ts",
"bin": {
"db-migrate": "./dist/index.js"
},
"scripts": {
"test": "node --test",
"build": "tsc --build",
"link": "npm run build && npm link",
"start": "node ./dist/index.js"
},
"author": "alvar",
"license": "ISC",
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"@types/node": "^25.2.3",
"@types/pg": "^8.16.0",
"@types/yargs": "^17.0.35",
"tsx": "^4.21.0"
},
"dependencies": {
"pg": "^8.18.0",
"typescript": "^5.9.3",
"yargs": "^18.0.0"
}
}