-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): add prettier-plugin-packagejson (#1307)
- Loading branch information
1 parent
19f031a
commit 5daf574
Showing
3 changed files
with
1,297 additions
and
925 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,15 +23,42 @@ | |
"prepublishOnly": "pnpm run clean && pnpm install && pnpm run build", | ||
"preflight": "pnpm install && run-s format build lint test:update-snapshots ts-check" | ||
}, | ||
"bin": { | ||
"node-pg-migrate": "bin/node-pg-migrate.js", | ||
"node-pg-migrate-cjs": "bin/node-pg-migrate.js", | ||
"node-pg-migrate-esm": "bin/node-pg-migrate.mjs" | ||
"keywords": [ | ||
"db", | ||
"database", | ||
"migrate", | ||
"migration", | ||
"migrations", | ||
"migrator", | ||
"db-migrate", | ||
"sql", | ||
"pg", | ||
"postgre", | ||
"postgres", | ||
"postgresql", | ||
"cockroach", | ||
"cockroachdb", | ||
"extensible", | ||
"expandable", | ||
"programatic", | ||
"programable", | ||
"api" | ||
], | ||
"homepage": "https://github.com/salsita/node-pg-migrate", | ||
"bugs": { | ||
"url": "https://github.com/salsita/node-pg-migrate/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/salsita/node-pg-migrate.git" | ||
}, | ||
"license": "MIT", | ||
"author": "Theo Ephraim", | ||
"contributors": [ | ||
"Salsita Software <[email protected]>", | ||
"Christopher Quadflieg <[email protected]>" | ||
], | ||
"type": "commonjs", | ||
"main": "dist/index.js", | ||
"module": "dist/esm/index.mjs", | ||
"types": "dist/index.d.ts", | ||
"exports": { | ||
"./dist/*": { | ||
"types": "./dist/*.d.ts", | ||
|
@@ -56,46 +83,19 @@ | |
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"main": "dist/index.js", | ||
"module": "dist/esm/index.mjs", | ||
"types": "dist/index.d.ts", | ||
"bin": { | ||
"node-pg-migrate": "bin/node-pg-migrate.js", | ||
"node-pg-migrate-cjs": "bin/node-pg-migrate.js", | ||
"node-pg-migrate-esm": "bin/node-pg-migrate.mjs" | ||
}, | ||
"files": [ | ||
"bin", | ||
"dist", | ||
"templates" | ||
], | ||
"author": "Theo Ephraim", | ||
"contributors": [ | ||
"Salsita Software <[email protected]>", | ||
"Christopher Quadflieg <[email protected]>" | ||
], | ||
"keywords": [ | ||
"db", | ||
"database", | ||
"migrate", | ||
"migration", | ||
"migrations", | ||
"migrator", | ||
"db-migrate", | ||
"sql", | ||
"pg", | ||
"postgre", | ||
"postgres", | ||
"postgresql", | ||
"cockroach", | ||
"cockroachdb", | ||
"extensible", | ||
"expandable", | ||
"programatic", | ||
"programable", | ||
"api" | ||
], | ||
"bugs": { | ||
"url": "https://github.com/salsita/node-pg-migrate/issues" | ||
}, | ||
"license": "MIT", | ||
"homepage": "https://github.com/salsita/node-pg-migrate", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/salsita/node-pg-migrate.git" | ||
}, | ||
"dependencies": { | ||
"glob": "11.0.0", | ||
"yargs": "~17.7.0" | ||
|
@@ -128,6 +128,7 @@ | |
"pg": "8.13.1", | ||
"prettier": "3.4.2", | ||
"prettier-plugin-organize-imports": "4.1.0", | ||
"prettier-plugin-packagejson": "2.5.6", | ||
"rimraf": "6.0.1", | ||
"ts-node": "10.9.2", | ||
"tsup": "8.3.5", | ||
|
Oops, something went wrong.