Files
db-migrate/package.json
2026-02-23 10:30:44 +01:00

28 lines
692 B
JSON

{
"name": "db-migrate",
"version": "1.1.0",
"description": "Herramienta de migracion de bdd",
"main": "src/index.ts",
"bin": "./lib/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"
}
}