UNPKG

@magic-mustard/sqlsync

Version:

SQLSync simplifies database schema evolution by allowing a declarative approach to table management

66 lines (65 loc) 1.58 kB
{ "name": "@magic-mustard/sqlsync", "version": "0.3.3", "description": "SQLSync simplifies database schema evolution by allowing a declarative approach to table management", "main": "dist/index.js", "bin": { "sqlsync": "dist/index.js" }, "files": [ "dist/**/*" ], "scripts": { "build": "pnpm run clean && tsc", "clean": "rm -rf dist", "start": "node dist/cli.js", "dev": "ts-node src/cli.ts", "test": "pnpm run build && jest", "test:e2e": "pnpm run build && jest --config jest-e2e.config.js", "format": "prettier --write \"**/*.{ts,js,json,md}\"", "prepublishOnly": "pnpm run build" }, "keywords": [ "sqlsync", "postgresql", "database", "migrations", "declarative", "schema", "sync" ], "author": "Tim | magicMustard", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/magicMustard/sqlsync.git" }, "bugs": { "url": "https://github.com/magicMustard/sqlsync/issues" }, "homepage": "https://github.com/magicMustard/sqlsync#readme", "type": "commonjs", "dependencies": { "chalk": "^4.1.2", "commander": "^12.1.0", "inquirer": "^12.6.3", "js-yaml": "^4.1.0", "lodash": "^4.17.21", "module-alias": "^2.2.3", "typescript": "^5.8.3", "yaml": "^2.8.0" }, "devDependencies": { "@types/inquirer": "^9.0.8", "@types/jest": "^29.5.14", "@types/js-yaml": "^4.0.9", "@types/lodash": "^4.17.17", "@types/module-alias": "^2.0.4", "@types/node": "^20.17.58", "jest": "^29.7.0", "prettier": "^3.5.3", "ts-jest": "^29.3.4", "ts-node": "^10.9.2", "tsc-alias": "^1.8.16" } }