mirror of
https://github.com/pnpm/pnpm.git
synced 2025-12-23 23:29:17 -05:00
fix(deps): update (#5711)
This commit is contained in:
20
.changeset/polite-yaks-refuse.md
Normal file
20
.changeset/polite-yaks-refuse.md
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
"@pnpm/config": patch
|
||||
"@pnpm/tarball-fetcher": patch
|
||||
"@pnpm/lockfile-file": patch
|
||||
"@pnpm/fetch": patch
|
||||
"@pnpm/parse-wanted-dependency": patch
|
||||
"@pnpm/link-bins": patch
|
||||
"@pnpm/package-requester": patch
|
||||
"@pnpm/resolve-dependencies": patch
|
||||
"@pnpm/read-package-json": patch
|
||||
"@pnpm/write-project-manifest": patch
|
||||
"pnpm": patch
|
||||
"@pnpm/local-resolver": patch
|
||||
"@pnpm/npm-resolver": patch
|
||||
"@pnpm/cafs": patch
|
||||
"@pnpm/package-store": patch
|
||||
"@pnpm/plugin-commands-store": patch
|
||||
---
|
||||
|
||||
Update dependencies.
|
||||
@@ -23,9 +23,9 @@
|
||||
"repository": "https://github.com/pnpm/pnpm/blob/master/utils/eslint-config",
|
||||
"scripts": {},
|
||||
"dependencies": {
|
||||
"@typescript-eslint/eslint-plugin": "^5.43.0",
|
||||
"@typescript-eslint/parser": "^5.43.0",
|
||||
"eslint": "^8.27.0",
|
||||
"@typescript-eslint/eslint-plugin": "^5.45.0",
|
||||
"@typescript-eslint/parser": "^5.45.0",
|
||||
"eslint": "^8.28.0",
|
||||
"eslint-config-standard-with-typescript": "^23.0.0",
|
||||
"eslint-plugin-import": "^2.26.0",
|
||||
"eslint-plugin-n": "^15.5.1",
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@pnpm/prepare": "workspace:*",
|
||||
"fs-extra": "^10.1.0"
|
||||
"fs-extra": "^11.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/test-fixtures": "workspace:*",
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
"homepage": "https://github.com/pnpm/pnpm/blob/main/cli/cli-utils#readme",
|
||||
"devDependencies": {
|
||||
"@pnpm/cli-utils": "workspace:*",
|
||||
"@types/ramda": "0.28.15"
|
||||
"@types/ramda": "0.28.20"
|
||||
},
|
||||
"dependencies": {
|
||||
"@pnpm/cli-meta": "workspace:*",
|
||||
|
||||
@@ -55,7 +55,7 @@
|
||||
"devDependencies": {
|
||||
"@pnpm/default-reporter": "workspace:*",
|
||||
"@types/normalize-path": "^3.0.0",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/semver": "7.3.13",
|
||||
"ghooks": "2.0.4",
|
||||
"load-json-file": "^6.2.0",
|
||||
|
||||
@@ -52,14 +52,14 @@
|
||||
"ramda": "npm:@pnpm/ramda@0.28.1",
|
||||
"read-ini-file": "^3.1.0",
|
||||
"realpath-missing": "^1.1.0",
|
||||
"which": "^2.0.2"
|
||||
"which": "^3.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/config": "workspace:*",
|
||||
"@pnpm/prepare": "workspace:*",
|
||||
"@pnpm/test-fixtures": "workspace:*",
|
||||
"@types/is-windows": "^1.0.0",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/which": "^2.0.1",
|
||||
"symlink-dir": "^5.1.0"
|
||||
},
|
||||
|
||||
@@ -14,7 +14,7 @@ import normalizeRegistryUrl from 'normalize-registry-url'
|
||||
import fromPairs from 'ramda/src/fromPairs'
|
||||
import realpathMissing from 'realpath-missing'
|
||||
import pathAbsolute from 'path-absolute'
|
||||
import whichcb from 'which'
|
||||
import which from 'which'
|
||||
import { checkGlobalBinDir } from './checkGlobalBinDir'
|
||||
import { getScopeRegistries } from './getScopeRegistries'
|
||||
import { getCacheDir, getConfigDir, getDataDir, getStateDir } from './dirs'
|
||||
@@ -31,12 +31,6 @@ export { Config, UniversalOptions }
|
||||
|
||||
const npmDefaults = loadNpmConf.defaults
|
||||
|
||||
async function which (cmd: string) {
|
||||
return new Promise<string>((resolve, reject) => {
|
||||
whichcb(cmd, (err, resolvedPath) => (err != null) ? reject(err) : resolve(resolvedPath!))
|
||||
})
|
||||
}
|
||||
|
||||
export const types = Object.assign({
|
||||
'auto-install-peers': Boolean,
|
||||
bail: Boolean,
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"devDependencies": {
|
||||
"@pnpm/normalize-registries": "workspace:*",
|
||||
"@types/ramda": "0.28.15"
|
||||
"@types/ramda": "0.28.20"
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
|
||||
2
env/node.fetcher/package.json
vendored
2
env/node.fetcher/package.json
vendored
@@ -50,7 +50,7 @@
|
||||
"@pnpm/cafs-types": "workspace:*",
|
||||
"@pnpm/node.fetcher": "workspace:*",
|
||||
"@pnpm/prepare": "workspace:*",
|
||||
"@types/adm-zip": "^0.4.34",
|
||||
"@types/adm-zip": "^0.5.0",
|
||||
"node-fetch": "3.0.0-beta.9"
|
||||
}
|
||||
}
|
||||
|
||||
2
env/plugin-commands-env/package.json
vendored
2
env/plugin-commands-env/package.json
vendored
@@ -50,7 +50,7 @@
|
||||
"devDependencies": {
|
||||
"@pnpm/plugin-commands-env": "workspace:*",
|
||||
"@pnpm/prepare": "workspace:*",
|
||||
"@types/adm-zip": "^0.4.34",
|
||||
"@types/adm-zip": "^0.5.0",
|
||||
"@types/semver": "7.3.13",
|
||||
"adm-zip": "^0.5.9",
|
||||
"execa": "npm:safe-execa@^0.1.2",
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/build-modules": "workspace:*",
|
||||
"@types/ramda": "0.28.15"
|
||||
"@types/ramda": "0.28.20"
|
||||
},
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
|
||||
@@ -38,12 +38,12 @@
|
||||
"@pnpm/prepare": "workspace:*",
|
||||
"@pnpm/registry-mock": "3.1.0",
|
||||
"@pnpm/test-fixtures": "workspace:*",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/semver": "7.3.13",
|
||||
"@types/sinon": "^10.0.13",
|
||||
"execa": "npm:safe-execa@^0.1.2",
|
||||
"path-exists": "^4.0.0",
|
||||
"sinon": "^14.0.2",
|
||||
"sinon": "^15.0.0",
|
||||
"write-yaml-file": "^4.2.0"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
"@pnpm/prepare": "workspace:*",
|
||||
"@pnpm/registry-mock": "3.1.0",
|
||||
"@types/is-windows": "^1.0.0",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"is-windows": "^1.0.2",
|
||||
"write-yaml-file": "^4.2.0"
|
||||
},
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
"@pnpm/directory-fetcher": "workspace:*",
|
||||
"@pnpm/test-fixtures": "workspace:*",
|
||||
"@types/npm-packlist": "^3.0.0",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@zkochan/rimraf": "^2.1.2"
|
||||
},
|
||||
"exports": {
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
"@zkochan/retry": "^0.2.0",
|
||||
"p-map-values": "^1.0.0",
|
||||
"ramda": "npm:@pnpm/ramda@0.28.1",
|
||||
"ssri": "^9.0.1"
|
||||
"ssri": "10.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/cafs-types": "workspace:*",
|
||||
@@ -51,7 +51,7 @@
|
||||
"@pnpm/fetch": "workspace:*",
|
||||
"@pnpm/tarball-fetcher": "workspace:*",
|
||||
"@pnpm/test-fixtures": "workspace:*",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/retry": "^0.12.2",
|
||||
"@types/ssri": "^7.1.1",
|
||||
"nock": "13.2.9",
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
"devDependencies": {
|
||||
"@pnpm/hooks.read-package-hook": "workspace:*",
|
||||
"@types/normalize-path": "^3.0.0",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/semver": "7.3.13",
|
||||
"@yarnpkg/core": "4.0.0-rc.27"
|
||||
},
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
"@pnpm/constants": "workspace:*",
|
||||
"@pnpm/lockfile-file": "workspace:*",
|
||||
"@pnpm/test-fixtures": "workspace:*",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"nock": "13.2.9"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/filter-lockfile": "workspace:*",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"detect-libc": "^2.0.1",
|
||||
"tempy": "^1.0.1",
|
||||
"write-yaml-file": "^4.2.0",
|
||||
|
||||
@@ -38,9 +38,9 @@
|
||||
"@pnpm/lockfile-file": "workspace:*",
|
||||
"@types/js-yaml": "^4.0.5",
|
||||
"@types/normalize-path": "^3.0.0",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/semver": "7.3.13",
|
||||
"@types/write-file-atomic": "^3.0.3",
|
||||
"@types/write-file-atomic": "^4.0.0",
|
||||
"tempy": "^1.0.1",
|
||||
"write-yaml-file": "^4.2.0",
|
||||
"yaml-tag": "1.1.0"
|
||||
@@ -62,7 +62,7 @@
|
||||
"semver": "^7.3.8",
|
||||
"sort-keys": "^4.2.0",
|
||||
"strip-bom": "^4.0.0",
|
||||
"write-file-atomic": "^4.0.2"
|
||||
"write-file-atomic": "^5.0.0"
|
||||
},
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
"devDependencies": {
|
||||
"@pnpm/lockfile-to-pnp": "workspace:*",
|
||||
"@types/normalize-path": "^3.0.0",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"rimraf": "^3.0.2"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
"devDependencies": {
|
||||
"@pnpm/lockfile-utils": "workspace:*",
|
||||
"@types/js-yaml": "^4.0.5",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"tempy": "^1.0.1",
|
||||
"write-yaml-file": "^4.2.0",
|
||||
"yaml-tag": "1.1.0"
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
"homepage": "https://github.com/pnpm/pnpm/blob/main/lockfile/lockfile-walker#readme",
|
||||
"devDependencies": {
|
||||
"@pnpm/lockfile-walker": "workspace:*",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"tempy": "^1.0.1"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"devDependencies": {
|
||||
"@pnpm/merge-lockfile-changes": "workspace:*",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/semver": "7.3.13"
|
||||
},
|
||||
"exports": {
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
"devDependencies": {
|
||||
"@pnpm/plugin-commands-audit": "workspace:*",
|
||||
"@pnpm/test-fixtures": "workspace:*",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/zkochan__table": "npm:@types/table@6.0.0",
|
||||
"load-json-file": "^6.2.0",
|
||||
"nock": "13.2.9",
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
"homepage": "https://github.com/pnpm/pnpm/blob/main/lockfile/prune-lockfile#readme",
|
||||
"devDependencies": {
|
||||
"@pnpm/prune-lockfile": "workspace:*",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"yaml-tag": "1.1.0"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
"dependencies": {
|
||||
"@pnpm/core-loggers": "workspace:*",
|
||||
"@pnpm/fetching-types": "workspace:*",
|
||||
"@pnpm/network.agent": "0.0.3",
|
||||
"@pnpm/network.agent": "0.0.4",
|
||||
"@zkochan/retry": "^0.2.0",
|
||||
"node-fetch": "3.0.0-beta.9"
|
||||
},
|
||||
|
||||
14
package.json
14
package.json
@@ -28,15 +28,15 @@
|
||||
"dev-setup": "pnpm -C=./pnpm/dev link -g"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.20.2",
|
||||
"@babel/core": "^7.20.5",
|
||||
"@babel/plugin-proposal-dynamic-import": "^7.18.6",
|
||||
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
|
||||
"@babel/preset-typescript": "^7.18.6",
|
||||
"@babel/types": "^7.20.2",
|
||||
"@babel/types": "^7.20.5",
|
||||
"@changesets/cli": "^2.25.2",
|
||||
"@commitlint/cli": "^17.2.0",
|
||||
"@commitlint/config-conventional": "^17.2.0",
|
||||
"@commitlint/prompt-cli": "^17.2.0",
|
||||
"@commitlint/cli": "^17.3.0",
|
||||
"@commitlint/config-conventional": "^17.3.0",
|
||||
"@commitlint/prompt-cli": "^17.3.0",
|
||||
"@pnpm/eslint-config": "workspace:*",
|
||||
"@pnpm/meta-updater": "0.2.2",
|
||||
"@pnpm/registry-mock": "3.1.0",
|
||||
@@ -45,7 +45,7 @@
|
||||
"@types/node": "^14.18.33",
|
||||
"c8": "^7.12.0",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint": "^8.27.0",
|
||||
"eslint": "^8.28.0",
|
||||
"husky": "^8.0.2",
|
||||
"jest": "^29.3.1",
|
||||
"keyv": "4.5.2",
|
||||
@@ -58,7 +58,7 @@
|
||||
"ts-jest": "29.0.3",
|
||||
"ts-node": "^10.9.1",
|
||||
"typescript": "4.9.3",
|
||||
"verdaccio": "^5.16.3"
|
||||
"verdaccio": "^5.18.0"
|
||||
},
|
||||
"engines": {
|
||||
"pnpm": ">=7.17.0"
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
"devDependencies": {
|
||||
"@pnpm/make-dedicated-lockfile": "workspace:*",
|
||||
"@pnpm/test-fixtures": "workspace:*",
|
||||
"@types/ramda": "0.28.15"
|
||||
"@types/ramda": "0.28.20"
|
||||
},
|
||||
"exports": {
|
||||
".": "./lib/index.js"
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
"compile": "tsc --build && pnpm run lint --fix"
|
||||
},
|
||||
"dependencies": {
|
||||
"validate-npm-package-name": "4.0.0"
|
||||
"validate-npm-package-name": "5.0.0"
|
||||
},
|
||||
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/parse-wanted-dependency#readme",
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
"@pnpm/plugin-commands-patching": "workspace:*",
|
||||
"@pnpm/prepare": "workspace:*",
|
||||
"@pnpm/registry-mock": "3.1.0",
|
||||
"@types/ramda": "0.28.15"
|
||||
"@types/ramda": "0.28.20"
|
||||
},
|
||||
"dependencies": {
|
||||
"@pnpm/cli-utils": "workspace:*",
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
"devDependencies": {
|
||||
"@pnpm/client": "workspace:*",
|
||||
"@pnpm/fetcher-base": "workspace:*",
|
||||
"@types/ramda": "0.28.15"
|
||||
"@types/ramda": "0.28.20"
|
||||
},
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
|
||||
@@ -84,7 +84,7 @@
|
||||
"@types/is-ci": "^3.0.0",
|
||||
"@types/is-windows": "^1.0.0",
|
||||
"@types/normalize-path": "^3.0.0",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/semver": "7.3.13",
|
||||
"@types/sinon": "^10.0.13",
|
||||
"@yarnpkg/core": "4.0.0-rc.27",
|
||||
@@ -97,7 +97,7 @@
|
||||
"path-name": "^1.0.0",
|
||||
"read-yaml-file": "^2.1.0",
|
||||
"resolve-link-target": "^2.0.0",
|
||||
"sinon": "^14.0.2",
|
||||
"sinon": "^15.0.0",
|
||||
"symlink-dir": "^5.1.0",
|
||||
"write-json-file": "^4.3.0",
|
||||
"write-yaml-file": "^4.2.0"
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/pkg-manager.direct-dep-linker": "workspace:*",
|
||||
"@types/ramda": "0.28.15"
|
||||
"@types/ramda": "0.28.20"
|
||||
},
|
||||
"homepage": "https://github.com/pnpm/pnpm/blob/main/pkg-manager/direct-dep-linker#readme",
|
||||
"keywords": [
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
"devDependencies": {
|
||||
"@pnpm/get-context": "workspace:*",
|
||||
"@types/is-ci": "^3.0.0",
|
||||
"@types/ramda": "0.28.15"
|
||||
"@types/ramda": "0.28.20"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@pnpm/logger": "^5.0.0"
|
||||
|
||||
@@ -26,13 +26,13 @@
|
||||
"@pnpm/store-path": "workspace:*",
|
||||
"@pnpm/test-fixtures": "workspace:*",
|
||||
"@types/fs-extra": "^9.0.13",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/rimraf": "^3.0.2",
|
||||
"@types/sinon": "^10.0.13",
|
||||
"isexe": "2.0.0",
|
||||
"load-json-file": "^6.2.0",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"sinon": "^14.0.2",
|
||||
"sinon": "^15.0.0",
|
||||
"tempy": "^1.0.1",
|
||||
"write-json-file": "^4.3.0"
|
||||
},
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/hoist": "workspace:*",
|
||||
"@types/ramda": "0.28.15"
|
||||
"@types/ramda": "0.28.20"
|
||||
},
|
||||
"directories": {
|
||||
"test": "test"
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
"@pnpm/types": "workspace:*",
|
||||
"@zkochan/cmd-shim": "^5.3.1",
|
||||
"@zkochan/rimraf": "^2.1.2",
|
||||
"bin-links": "^3.0.3",
|
||||
"bin-links": "^4.0.1",
|
||||
"is-subdir": "^1.2.0",
|
||||
"is-windows": "^1.0.2",
|
||||
"normalize-path": "^3.0.0",
|
||||
@@ -54,7 +54,7 @@
|
||||
"@types/is-windows": "^1.0.0",
|
||||
"@types/node": "^14.18.33",
|
||||
"@types/normalize-path": "^3.0.0",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"cmd-extension": "^1.0.2",
|
||||
"path-exists": "^4.0.0",
|
||||
"tempy": "^1.0.1"
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/modules-cleaner": "workspace:*",
|
||||
"@types/ramda": "0.28.15"
|
||||
"@types/ramda": "0.28.20"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/pnpm/pnpm/issues"
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
"devDependencies": {
|
||||
"@pnpm/modules-yaml": "workspace:*",
|
||||
"@types/is-windows": "^1.0.0",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"tempy": "^1.0.1"
|
||||
},
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
"rename-overwrite": "^4.0.3",
|
||||
"safe-promise-defer": "^1.0.1",
|
||||
"semver": "^7.3.8",
|
||||
"ssri": "^9.0.1"
|
||||
"ssri": "10.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/cafs-types": "workspace:*",
|
||||
@@ -71,7 +71,7 @@
|
||||
"@pnpm/registry-mock": "3.1.0",
|
||||
"@pnpm/test-fixtures": "workspace:*",
|
||||
"@types/normalize-path": "^3.0.0",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/semver": "7.3.13",
|
||||
"@types/ssri": "^7.1.1",
|
||||
"delay": "^5.0.0",
|
||||
|
||||
@@ -42,7 +42,7 @@
|
||||
"@pnpm/test-fixtures": "workspace:*",
|
||||
"@types/is-ci": "^3.0.0",
|
||||
"@types/proxyquire": "^1.3.28",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/sinon": "^10.0.13",
|
||||
"@types/yarnpkg__lockfile": "^1.1.5",
|
||||
"@types/zkochan__table": "npm:@types/table@6.0.0",
|
||||
@@ -50,7 +50,7 @@
|
||||
"path-name": "^1.0.0",
|
||||
"proxyquire": "^2.1.3",
|
||||
"read-yaml-file": "^2.1.0",
|
||||
"sinon": "^14.0.2",
|
||||
"sinon": "^15.0.0",
|
||||
"symlink-dir": "^5.1.0",
|
||||
"tempy": "^1.0.1",
|
||||
"write-json-file": "^4.3.0",
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
"devDependencies": {
|
||||
"@pnpm/remove-bins": "workspace:*",
|
||||
"@types/is-windows": "^1.0.0",
|
||||
"@types/ramda": "0.28.15"
|
||||
"@types/ramda": "0.28.20"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/pnpm/pnpm/issues"
|
||||
|
||||
@@ -59,13 +59,13 @@
|
||||
"safe-promise-defer": "^1.0.1",
|
||||
"semver": "^7.3.8",
|
||||
"semver-range-intersect": "^0.3.1",
|
||||
"string.prototype.replaceall": "1.0.6",
|
||||
"string.prototype.replaceall": "1.0.7",
|
||||
"version-selector-type": "^3.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/resolve-dependencies": "workspace:*",
|
||||
"@types/normalize-path": "^3.0.0",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/semver": "7.3.13"
|
||||
},
|
||||
"bugs": {
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
"homepage": "https://github.com/pnpm/pnpm/blob/main/pkg-manifest/exportable-manifest#readme",
|
||||
"devDependencies": {
|
||||
"@pnpm/exportable-manifest": "workspace:*",
|
||||
"@types/ramda": "0.28.15"
|
||||
"@types/ramda": "0.28.20"
|
||||
},
|
||||
"dependencies": {
|
||||
"@pnpm/error": "workspace:*",
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
"@pnpm/error": "workspace:*",
|
||||
"@pnpm/types": "workspace:*",
|
||||
"load-json-file": "^6.2.0",
|
||||
"normalize-package-data": "^4.0.1"
|
||||
"normalize-package-data": "^5.0.0"
|
||||
},
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"devDependencies": {
|
||||
|
||||
@@ -32,12 +32,12 @@
|
||||
"@pnpm/text.comments-parser": "workspace:*",
|
||||
"@pnpm/types": "workspace:*",
|
||||
"json5": "^2.2.1",
|
||||
"write-file-atomic": "^4.0.2",
|
||||
"write-file-atomic": "^5.0.0",
|
||||
"write-yaml-file": "^4.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/write-project-manifest": "workspace:*",
|
||||
"@types/write-file-atomic": "^3.0.3",
|
||||
"@types/write-file-atomic": "^4.0.0",
|
||||
"tempy": "^1.0.1"
|
||||
},
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
|
||||
1360
pnpm-lock.yaml
generated
1360
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -68,7 +68,7 @@
|
||||
"@types/is-ci": "^3.0.0",
|
||||
"@types/is-windows": "^1.0.0",
|
||||
"@types/pnpm__byline": "npm:@types/byline@^4.2.33",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/semver": "7.3.13",
|
||||
"@types/which": "^2.0.1",
|
||||
"@zkochan/retry": "^0.2.0",
|
||||
@@ -80,7 +80,7 @@
|
||||
"delay": "^5.0.0",
|
||||
"dependency-path": "workspace:*",
|
||||
"dir-is-case-sensitive": "^2.0.0",
|
||||
"esbuild": "^0.15.14",
|
||||
"esbuild": "^0.15.16",
|
||||
"execa": "npm:safe-execa@^0.1.2",
|
||||
"exists-link": "2.0.0",
|
||||
"is-ci": "^3.0.1",
|
||||
@@ -104,7 +104,7 @@
|
||||
"symlink-dir": "^5.1.0",
|
||||
"tempy": "^1.0.1",
|
||||
"tree-kill": "^1.2.2",
|
||||
"which": "^2.0.2",
|
||||
"which": "^3.0.0",
|
||||
"write-json-file": "^4.3.0",
|
||||
"write-pkg": "4.0.0",
|
||||
"write-yaml-file": "^4.2.0"
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
"@types/is-windows": "^1.0.0",
|
||||
"@types/npm-packlist": "^3.0.0",
|
||||
"@types/proxyquire": "^1.3.28",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/sinon": "^10.0.13",
|
||||
"@types/tar": "^6.1.3",
|
||||
"@types/tar-stream": "^2.2.2",
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
"@pnpm/resolver-base": "workspace:*",
|
||||
"@pnpm/types": "workspace:*",
|
||||
"normalize-path": "^3.0.0",
|
||||
"ssri": "^9.0.1"
|
||||
"ssri": "10.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/local-resolver": "workspace:*",
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
"ramda": "npm:@pnpm/ramda@0.28.1",
|
||||
"rename-overwrite": "^4.0.3",
|
||||
"semver": "^7.3.8",
|
||||
"ssri": "^9.0.1",
|
||||
"ssri": "10.0.0",
|
||||
"version-selector-type": "^3.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
@@ -61,7 +61,7 @@
|
||||
"@pnpm/npm-resolver": "workspace:*",
|
||||
"@pnpm/test-fixtures": "workspace:*",
|
||||
"@types/normalize-path": "^3.0.0",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/semver": "7.3.13",
|
||||
"@types/ssri": "^7.1.1",
|
||||
"nock": "13.2.9",
|
||||
|
||||
@@ -55,7 +55,7 @@
|
||||
"devDependencies": {
|
||||
"@pnpm/constants": "workspace:*",
|
||||
"@pnpm/license-scanner": "workspace:*",
|
||||
"@types/ramda": "0.28.15"
|
||||
"@types/ramda": "0.28.20"
|
||||
},
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"exports": {
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
"@pnpm/list": "workspace:*",
|
||||
"@pnpm/test-fixtures": "workspace:*",
|
||||
"@types/archy": "0.0.32",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/semver": "7.3.13"
|
||||
},
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
|
||||
@@ -53,7 +53,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/outdated": "workspace:*",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/semver": "7.3.13",
|
||||
"npm-run-all": "^4.1.5"
|
||||
},
|
||||
|
||||
@@ -39,8 +39,8 @@
|
||||
"@pnpm/plugin-commands-licenses": "workspace:*",
|
||||
"@pnpm/read-package-json": "workspace:*",
|
||||
"@pnpm/registry-mock": "3.1.0",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/wrap-ansi": "^3.0.0",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/wrap-ansi": "^8.0.1",
|
||||
"@types/zkochan__table": "npm:@types/table@6.0.0",
|
||||
"strip-ansi": "^6.0.1",
|
||||
"tempy": "^1.0.1"
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
"@pnpm/plugin-commands-listing": "workspace:*",
|
||||
"@pnpm/prepare": "workspace:*",
|
||||
"@pnpm/registry-mock": "3.1.0",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"execa": "npm:safe-execa@^0.1.2",
|
||||
"strip-ansi": "^6.0.1",
|
||||
"write-yaml-file": "^4.2.0"
|
||||
|
||||
@@ -40,8 +40,8 @@
|
||||
"@pnpm/prepare": "workspace:*",
|
||||
"@pnpm/registry-mock": "3.1.0",
|
||||
"@pnpm/test-fixtures": "workspace:*",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/wrap-ansi": "^3.0.0",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/wrap-ansi": "^8.0.1",
|
||||
"@types/zkochan__table": "npm:@types/table@6.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"p-limit": "^3.1.0",
|
||||
"path-temp": "^2.0.0",
|
||||
"rename-overwrite": "^4.0.3",
|
||||
"ssri": "^9.0.1",
|
||||
"ssri": "10.0.0",
|
||||
"strip-bom": "^4.0.0",
|
||||
"tar-stream": "^2.2.0"
|
||||
},
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
"@pnpm/cafs-types": "workspace:*",
|
||||
"@pnpm/create-cafs-store": "workspace:*",
|
||||
"@pnpm/prepare": "workspace:*",
|
||||
"@types/ramda": "0.28.15"
|
||||
"@types/ramda": "0.28.20"
|
||||
},
|
||||
"directories": {
|
||||
"test": "test"
|
||||
|
||||
@@ -25,14 +25,14 @@
|
||||
"@zkochan/rimraf": "^2.1.2",
|
||||
"load-json-file": "^6.2.0",
|
||||
"ramda": "npm:@pnpm/ramda@0.28.1",
|
||||
"ssri": "^9.0.1",
|
||||
"ssri": "10.0.0",
|
||||
"write-json-file": "^4.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pnpm/client": "workspace:*",
|
||||
"@pnpm/package-store": "workspace:*",
|
||||
"@pnpm/prepare": "workspace:*",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/ssri": "^7.1.1",
|
||||
"tempy": "^1.0.1"
|
||||
},
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
"devDependencies": {
|
||||
"@pnpm/plugin-commands-server": "workspace:*",
|
||||
"@types/is-windows": "^1.0.0",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/signal-exit": "^3.0.1"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
@@ -39,12 +39,12 @@
|
||||
"@pnpm/prepare": "workspace:*",
|
||||
"@pnpm/registry-mock": "3.1.0",
|
||||
"@types/archy": "0.0.32",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/ssri": "^7.1.1",
|
||||
"@zkochan/rimraf": "^2.1.2",
|
||||
"execa": "npm:safe-execa@^0.1.2",
|
||||
"path-exists": "^4.0.0",
|
||||
"ssri": "^9.0.1",
|
||||
"ssri": "10.0.0",
|
||||
"tempy": "^1.0.1"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
"@types/is-ci": "^3.0.0",
|
||||
"@types/is-windows": "^1.0.0",
|
||||
"@types/micromatch": "^4.0.2",
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/touch": "^3.1.2",
|
||||
"is-ci": "^3.0.1",
|
||||
"is-windows": "^1.0.2",
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
},
|
||||
"homepage": "https://github.com/pnpm/pnpm/blob/main/workspace/pkgs-graph#readme",
|
||||
"devDependencies": {
|
||||
"@types/ramda": "0.28.15",
|
||||
"@types/ramda": "0.28.20",
|
||||
"better-path-resolve": "1.0.0",
|
||||
"pkgs-graph": "workspace:*"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user