This commit is contained in:
2026-03-04 15:10:47 +01:00
parent f84d68ba79
commit 2900f2dc1a

View File

@@ -1,16 +1,22 @@
{ {
"name": "db-migrate", "name": "@alvarsanmartin/db-migrate",
"version": "1.1.0", "version": "1.1.0",
"description": "Herramienta de migracion de bdd", "description": "Herramienta de migracion de bdd",
"main": "src/index.ts", "main": "src/index.ts",
"bin": "./lib/index.js", "type": "module",
"engines": {
"node": ">22.0.0"
},
"bin": {
"db-migrate": "lib/index.js"
},
"scripts": { "scripts": {
"test": "node --test", "test": "node --test",
"build": "tsc --build", "build": "tsc --build",
"link": "npm run build && npm link", "link": "npm run build && npm link",
"start": "node ./dist/index.js" "start": "node ./dist/index.js"
}, },
"author": "alvar", "author": "alvarsanmartin",
"license": "ISC", "license": "ISC",
"devDependencies": { "devDependencies": {
"@tsconfig/node22": "^22.0.5", "@tsconfig/node22": "^22.0.5",