Files
db-migrate/package.json

30 lines
727 B
JSON
Raw Normal View History

2026-02-18 14:58:21 +01:00
{
"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"
}
}