-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
139 changed files
with
4,950 additions
and
4,132 deletions.
There are no files selected for viewing
File renamed without changes.
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 |
---|---|---|
|
@@ -21,4 +21,4 @@ const config = { | |
], | ||
}; | ||
|
||
module.exports = config; | ||
export default config; |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "syncpack", | ||
"description": "Consistent dependency versions in large JavaScript Monorepos", | ||
"version": "12.3.0", | ||
"version": "12.3.2", | ||
"author": "Jamie Mason <[email protected]> (https://github.com/JamieMason)", | ||
"bin": { | ||
"syncpack": "dist/bin.js", | ||
|
@@ -33,51 +33,53 @@ | |
"Tom Fletcher (https://github.com/tom-fletcher)" | ||
], | ||
"dependencies": { | ||
"@effect/schema": "0.56.1", | ||
"chalk": "4.1.2", | ||
"commander": "11.1.0", | ||
"@effect/schema": "0.66.5", | ||
"chalk": "5.3.0", | ||
"chalk-template": "1.1.0", | ||
"commander": "12.0.0", | ||
"cosmiconfig": "9.0.0", | ||
"effect": "2.0.0-next.62", | ||
"effect": "3.0.3", | ||
"enquirer": "2.4.1", | ||
"fast-check": "3.15.0", | ||
"globby": "11.1.0", | ||
"minimatch": "9.0.3", | ||
"npm-package-arg": "11.0.1", | ||
"ora": "5.4.1", | ||
"fast-check": "3.17.2", | ||
"globby": "14.0.1", | ||
"minimatch": "9.0.4", | ||
"npm-package-arg": "11.0.2", | ||
"ora": "8.0.1", | ||
"prompts": "2.4.2", | ||
"read-yaml-file": "2.1.0", | ||
"semver": "7.5.4", | ||
"tightrope": "0.1.0", | ||
"semver": "7.6.0", | ||
"tightrope": "0.2.0", | ||
"ts-toolbelt": "9.6.0" | ||
}, | ||
"devDependencies": { | ||
"@release-it/conventional-changelog": "8.0.1", | ||
"@tsconfig/node18": "18.2.2", | ||
"@types/node": "20.10.6", | ||
"@tsconfig/node18": "18.2.4", | ||
"@types/node": "20.12.7", | ||
"@types/npm-package-arg": "6.1.4", | ||
"@types/prompts": "2.4.9", | ||
"@types/semver": "7.5.6", | ||
"@typescript-eslint/eslint-plugin": "6.16.0", | ||
"@typescript-eslint/parser": "6.16.0", | ||
"@vitest/coverage-v8": "1.1.0", | ||
"@types/semver": "7.5.8", | ||
"@typescript-eslint/eslint-plugin": "6.19.0", | ||
"@typescript-eslint/parser": "6.19.0", | ||
"@vitest/coverage-v8": "1.5.0", | ||
"auto-changelog": "2.4.0", | ||
"eslint": "8.56.0", | ||
"eslint-plugin-import": "2.29.1", | ||
"memfs": "4.6.0", | ||
"prettier": "3.1.1", | ||
"prettier-plugin-astro": "0.12.3", | ||
"memfs": "4.8.2", | ||
"prettier": "3.2.5", | ||
"prettier-plugin-astro": "0.13.0", | ||
"quill-delta": "5.1.0", | ||
"release-it": "17.0.1", | ||
"release-it": "17.2.0", | ||
"rxjs": "7.8.1", | ||
"ts-node": "10.9.2", | ||
"tslib": "2.6.2", | ||
"typescript": "5.3.3", | ||
"typescript-json-schema": "0.62.0", | ||
"vitest": "1.1.0" | ||
"typescript": "5.4.5", | ||
"typescript-json-schema": "0.63.0", | ||
"vitest": "1.5.0" | ||
}, | ||
"engines": { | ||
"node": ">=16" | ||
}, | ||
"exports": "./dist/index.js", | ||
"files": [ | ||
"dist" | ||
], | ||
|
@@ -103,20 +105,10 @@ | |
"yarn" | ||
], | ||
"license": "MIT", | ||
"main": "dist/index.js", | ||
"pnpm": { | ||
"overrides": { | ||
"chalk": "4.1.2", | ||
"effect": "2.0.0-next.62", | ||
"string-width": "<5.0.0", | ||
"strip-ansi": "<7.0.0", | ||
"wrap-ansi": "<8.0.0" | ||
} | ||
}, | ||
"repository": "JamieMason/syncpack", | ||
"scripts": { | ||
"build": "pnpm run clean && pnpm run build:source && pnpm run build:json-schema", | ||
"build:json-schema": "typescript-json-schema --esModuleInterop --noExtraProps src/index.ts JsonSchema --out dist/schema.json", | ||
"build:json-schema": "typescript-json-schema --esModuleInterop --noExtraProps --ignoreErrors src/index.ts JsonSchema --out dist/schema.json", | ||
"build:source": "tsc --project tsconfig.build.json", | ||
"clean": "rm -rf ./dist", | ||
"format": "pnpm run format:lint && pnpm run format:source", | ||
|
@@ -128,5 +120,6 @@ | |
"prepack": "pnpm run build", | ||
"release": "release-it", | ||
"test": "vitest run --config vitest.config.ts" | ||
} | ||
}, | ||
"type": "module" | ||
} |
Oops, something went wrong.