chore: dependencies maintenance (#5167)

* chore: dependencies maintenance

- upgrade node-fetch to latest stable version
- upgrade lru-cache and remove @types/lru-cache stub type definitions
- remove eslint disables in npm-resolver index.ts
- upgrade @types/validate-npm-package-name to v4 to match package major version
- upgrade dependencies in @pnpm/get-release-text

* updated pnpm.overrides section

* include changeset

* - update local.d.ts
- replace deprecated lru-cache maxAge option with ttl

* turn down node-fetch version to 3.0.0-beta.9 again since newer ones are ESM-only

* update changeset
This commit is contained in:
MCMXC
2022-08-06 17:16:07 +02:00
committed by GitHub
parent f5c8710485
commit 238a165a53
9 changed files with 236 additions and 335 deletions

View File

@@ -0,0 +1,8 @@
---
"@pnpm/npm-resolver": patch
"@pnpm/parse-wanted-dependency": patch
"@pnpm/plugin-commands-outdated": patch
"@pnpm/get-release-text": patch
---
dependencies maintenance

View File

@@ -65,26 +65,11 @@
"packageManager": "pnpm@7.7.1",
"pnpm": {
"overrides": {
"ansi-regex@<5": "^5.0.1",
"clipanion": "3.2.0-rc.6",
"glob-parent@3": "^5.1.2",
"hosted-git-info@<3.0.8": "^3.0.8",
"glob-parent@<5.1.2": ">=5.1.2",
"hosted-git-info@4": "npm:@zkochan/hosted-git-info@^4.0.2",
"http-errors": "^1.7.3",
"istanbul-reports": "npm:@zkochan/istanbul-reports",
"js-yaml@^4.0.0": "npm:@zkochan/js-yaml@0.0.6",
"lodash@<4.17.19": "^4.17.9",
"nopt@5": "npm:@pnpm/nopt@^0.2.1",
"pkg-fetch": "3.4.1",
"rimraf@<3": "3",
"table@^6.0.3": "6.0.4",
"trim-newlines@1": "^3.0.1",
"trim@<0.0.3": ">=0.0.3",
"set-value@<4.0.1": "^4.0.1",
"validator@<13.7.0": ">=13.7.0",
"json-schema@<0.4.0": ">=0.4.0",
"jsdom@<=16.4.0": ">=16.5.0",
"glob-parent@<6.0.1": ">=6.0.1"
"nopt@5": "npm:@pnpm/nopt@^0.2.1"
},
"packageExtensions": {
"@babel/parser": {

View File

@@ -44,7 +44,7 @@
"@zkochan/retry": "^0.2.0",
"encode-registry": "^3.0.0",
"load-json-file": "^6.2.0",
"lru-cache": "^6.0.0",
"lru-cache": "^7.13.2",
"normalize-path": "^3.0.0",
"p-limit": "^3.1.0",
"p-memoize": "4.0.1",
@@ -60,7 +60,6 @@
"@pnpm/logger": "^4.0.0",
"@pnpm/npm-resolver": "workspace:*",
"@pnpm/test-fixtures": "workspace:*",
"@types/lru-cache": "^5.1.1",
"@types/normalize-path": "^3.0.0",
"@types/semver": "^7.3.10",
"@types/ssri": "^7.1.1",

View File

@@ -70,7 +70,7 @@ export default function createResolver (
getCredentials: GetCredentials,
opts: ResolverFactoryOptions
) {
if (typeof opts.cacheDir !== 'string') { // eslint-disable-line
if (typeof opts.cacheDir !== 'string') {
throw new TypeError('`opts.cacheDir` is required and needs to be a string')
}
const fetchOpts = {
@@ -84,8 +84,8 @@ export default function createResolver (
const getAuthHeaderValueByURI = (registry: string) => getCredentials(registry).authHeaderValue
const metaCache = new LRU({
max: 10000,
maxAge: 120 * 1000, // 2 minutes
}) as any // eslint-disable-line @typescript-eslint/no-explicit-any
ttl: 120 * 1000, // 2 minutes
})
return resolveNpm.bind(null, {
getAuthHeaderValueByURI,
pickPackage: pickPackage.bind(null, {

View File

@@ -13,7 +13,7 @@
],
"devDependencies": {
"@pnpm/parse-wanted-dependency": "workspace:*",
"@types/validate-npm-package-name": "^3.0.3"
"@types/validate-npm-package-name": "^4.0.0"
},
"keywords": [
"pnpm7"

View File

@@ -39,7 +39,6 @@
"@pnpm/plugin-commands-outdated": "workspace:*",
"@pnpm/prepare": "workspace:*",
"@pnpm/registry-mock": "2.20.0",
"@types/lru-cache": "^5.1.1",
"@types/ramda": "0.28.14",
"@types/wrap-ansi": "^3.0.0",
"@types/zkochan__table": "npm:@types/table@6.0.0"
@@ -61,7 +60,7 @@
"@pnpm/types": "workspace:*",
"@zkochan/table": "^1.0.0",
"chalk": "^4.1.2",
"lru-cache": "^6.0.0",
"lru-cache": "^7.13.2",
"ramda": "npm:@pnpm/ramda@0.28.1",
"render-help": "^1.0.2",
"strip-ansi": "^6.0.1",

372
pnpm-lock.yaml generated
View File

@@ -5,26 +5,11 @@ neverBuiltDependencies:
- level
overrides:
ansi-regex@<5: ^5.0.1
clipanion: 3.2.0-rc.6
glob-parent@3: ^5.1.2
hosted-git-info@<3.0.8: ^3.0.8
glob-parent@<5.1.2: '>=5.1.2'
hosted-git-info@4: npm:@zkochan/hosted-git-info@^4.0.2
http-errors: ^1.7.3
istanbul-reports: npm:@zkochan/istanbul-reports
js-yaml@^4.0.0: npm:@zkochan/js-yaml@0.0.6
lodash@<4.17.19: ^4.17.9
nopt@5: npm:@pnpm/nopt@^0.2.1
pkg-fetch: 3.4.1
rimraf@<3: '3'
table@^6.0.3: 6.0.4
trim-newlines@1: ^3.0.1
trim@<0.0.3: '>=0.0.3'
set-value@<4.0.1: ^4.0.1
validator@<13.7.0: '>=13.7.0'
json-schema@<0.4.0: '>=0.4.0'
jsdom@<=16.4.0: '>=16.5.0'
glob-parent@<6.0.1: '>=6.0.1'
packageExtensionsChecksum: 1373aa954ee01713eb42037cfa3725eb
@@ -2471,8 +2456,8 @@ importers:
specifier: ^6.2.0
version: 6.2.0
lru-cache:
specifier: ^6.0.0
version: 6.0.0
specifier: ^7.13.2
version: 7.13.2
normalize-path:
specifier: ^3.0.0
version: 3.0.0
@@ -2513,9 +2498,6 @@ importers:
'@pnpm/test-fixtures':
specifier: workspace:*
version: link:../../privatePackages/test-fixtures
'@types/lru-cache':
specifier: ^5.1.1
version: 5.1.1
'@types/normalize-path':
specifier: ^3.0.0
version: 3.0.0
@@ -2864,8 +2846,8 @@ importers:
specifier: workspace:*
version: 'link:'
'@types/validate-npm-package-name':
specifier: ^3.0.3
version: 3.0.3
specifier: ^4.0.0
version: 4.0.0
packages/pick-registry-for-package:
dependencies:
@@ -3439,8 +3421,8 @@ importers:
specifier: ^4.1.2
version: 4.1.2
lru-cache:
specifier: ^6.0.0
version: 6.0.0
specifier: ^7.13.2
version: 7.13.2
ramda:
specifier: npm:@pnpm/ramda@0.28.1
version: /@pnpm/ramda/0.28.1
@@ -3472,9 +3454,6 @@ importers:
'@pnpm/registry-mock':
specifier: 2.20.0
version: 2.20.0
'@types/lru-cache':
specifier: ^5.1.1
version: 5.1.1
'@types/ramda':
specifier: 0.28.14
version: 0.28.14
@@ -5269,17 +5248,17 @@ importers:
utils/get-release-text:
dependencies:
mdast-util-to-string:
specifier: ^1.1.0
version: 1.1.0
specifier: ^2.0.0
version: 2.0.0
remark-parse:
specifier: ^7.0.2
version: 7.0.2_unified@8.4.2
specifier: ^9.0.0
version: 9.0.0_unified@9.2.2
remark-stringify:
specifier: ^7.0.4
version: 7.0.4_unified@8.4.2
specifier: ^9.0.1
version: 9.0.1_unified@9.2.2
unified:
specifier: ^8.4.2
version: 8.4.2
specifier: ^9.2.2
version: 9.2.2
devDependencies:
'@pnpm/get-release-text':
specifier: workspace:*
@@ -7155,9 +7134,11 @@ packages:
/@types/lodash/4.14.181:
resolution: {integrity: sha512-n3tyKthHJbkiWhDZs3DkhkCzt2MexYHXlX0td5iMplyfwketaOeKboEVBqzceH7juqvEg3q5oUoBFxSLu7zFag==}
/@types/lru-cache/5.1.1:
resolution: {integrity: sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==}
dev: true
/@types/mdast/3.0.10:
resolution: {integrity: sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==}
dependencies:
'@types/unist': 2.0.6
dev: false
/@types/micromatch/4.0.2:
resolution: {integrity: sha512-oqXqVb0ci19GtH0vOA/U2TmHTcRY9kuZl4mqUxe0QmJAlIW13kzhuK5pi1i9+ngav8FjpSb9FVS/GE00GLX1VA==}
@@ -7311,8 +7292,8 @@ packages:
resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==}
dev: true
/@types/validate-npm-package-name/3.0.3:
resolution: {integrity: sha512-dLhCHEIjf9++/vHaHCo/ngJzGqGGbPh/f7HKwznEk3WFL64t/VKuRiVpyQH4afX93YkCV94I9M0Cx+DBLk1Dsg==}
/@types/validate-npm-package-name/4.0.0:
resolution: {integrity: sha512-RpO62vB2lkjEkyLbwTheA2+uwYmtVMWTr/kWRI++UAgVdZqNqdAuIQl/SxBCGeMKfdjWaXPbyhZbiCc4PAj+KA==}
dev: true
/@types/which/2.0.1:
@@ -7473,7 +7454,7 @@ packages:
resolution: {integrity: sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==}
engines: {node: '>=8'}
dependencies:
http-errors: 1.8.1
http-errors: 2.0.0
http-status-codes: 2.2.0
/@verdaccio/file-locking/10.3.0:
@@ -7855,7 +7836,6 @@ packages:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
uri-js: 4.4.1
dev: true
/all-module-paths/0.10.7:
resolution: {integrity: sha512-NDEu5/flJbTf1KW8+juMKcPScMjZRrmAiq4QYnU8f085vNQMA1lZQnshibpTMYJpjvxrFWQvsFHc+umcNZbBuQ==}
@@ -7908,6 +7888,19 @@ packages:
type-fest: 0.21.3
dev: true
/ansi-regex/2.1.1:
resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
engines: {node: '>=0.10.0'}
/ansi-regex/3.0.1:
resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==}
engines: {node: '>=4'}
/ansi-regex/4.1.1:
resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==}
engines: {node: '>=6'}
dev: true
/ansi-regex/5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
@@ -7915,7 +7908,7 @@ packages:
/ansi-split/1.0.1:
resolution: {integrity: sha512-RRxQym4DFtDNmHIkW6aeFVvrXURb11lGAEPXNiryjCe8bK8RsANjzJ0M2aGOkvBYwP4Bl/xZ8ijtr6D3j1x/eg==}
dependencies:
ansi-regex: 5.0.1
ansi-regex: 3.0.1
/ansi-styles/3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
@@ -8209,7 +8202,7 @@ packages:
debug: 2.6.9
depd: 2.0.0
destroy: 1.2.0
http-errors: 1.8.1
http-errors: 2.0.0
iconv-lite: 0.4.24
on-finished: 2.4.1
qs: 6.10.3
@@ -8454,10 +8447,6 @@ packages:
/caseless/0.12.0:
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
/ccount/1.1.0:
resolution: {integrity: sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg==}
dev: false
/chalk/2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
@@ -8484,10 +8473,6 @@ packages:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
/character-entities-html4/1.1.4:
resolution: {integrity: sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g==}
dev: false
/character-entities-legacy/1.1.4:
resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==}
dev: false
@@ -8556,6 +8541,11 @@ packages:
resolution: {integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==}
dev: true
/clipanion/3.1.0:
resolution: {integrity: sha512-v025Hz+IDQ15FpOyK8p02h5bFznMu6rLFsJSyOPR+7WrbSnZ1Ek6pblPukV7K5tC/dsWfncQPIrJ4iUy2PXkbw==}
dependencies:
typanion: 3.9.0
/clipanion/3.2.0-rc.6:
resolution: {integrity: sha512-lcByFNxi1L/sskjD/YybFZI43bnkm/AuUNFcF5i5Znz6nvWCH9gfq4qkNmAk5MhS/MPY5Im8jiqYH54h23Vc7Q==}
dependencies:
@@ -8629,10 +8619,6 @@ packages:
resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==}
engines: {node: '>=0.10.0'}
/collapse-white-space/1.0.6:
resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==}
dev: false
/collect-v8-coverage/1.0.1:
resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==}
dev: true
@@ -8868,7 +8854,7 @@ packages:
graceful-fs: 4.2.10
minimist: 1.2.6
mkdirp: 0.5.6
rimraf: 3.0.2
rimraf: 2.7.1
/create-require/1.1.1:
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
@@ -9156,6 +9142,7 @@ packages:
/depd/1.1.2:
resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==}
engines: {node: '>= 0.6'}
dev: false
/depd/2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
@@ -10037,7 +10024,7 @@ packages:
etag: 1.8.1
finalhandler: 1.2.0
fresh: 0.5.2
http-errors: 1.8.1
http-errors: 2.0.0
merge-descriptors: 1.0.1
methods: 1.1.2
on-finished: 2.4.1
@@ -10091,7 +10078,7 @@ packages:
dependencies:
'@nodelib/fs.stat': 2.0.5
'@nodelib/fs.walk': 1.2.8
glob-parent: 6.0.2
glob-parent: 5.1.2
merge2: 1.4.1
micromatch: 4.0.5
@@ -10563,6 +10550,12 @@ packages:
resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
dev: true
/glob-parent/5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
dependencies:
is-glob: 4.0.3
/glob-parent/6.0.2:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
@@ -10585,6 +10578,15 @@ packages:
unique-stream: 2.3.1
dev: true
/glob/6.0.4:
resolution: {integrity: sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==}
dependencies:
inflight: 1.0.6
inherits: 2.0.4
minimatch: 3.1.2
once: 1.4.0
path-is-absolute: 1.0.1
/glob/7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies:
@@ -10752,11 +10754,8 @@ packages:
dependencies:
function-bind: 1.1.1
/hosted-git-info/3.0.8:
resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==}
engines: {node: '>=10'}
dependencies:
lru-cache: 6.0.0
/hosted-git-info/2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
/html-encoding-sniffer/2.0.1:
resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==}
@@ -10771,14 +10770,14 @@ packages:
/http-cache-semantics/4.1.0:
resolution: {integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==}
/http-errors/1.8.1:
resolution: {integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==}
engines: {node: '>= 0.6'}
/http-errors/2.0.0:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
dependencies:
depd: 1.1.2
depd: 2.0.0
inherits: 2.0.4
setprototypeof: 1.2.0
statuses: 1.5.0
statuses: 2.0.1
toidentifier: 1.0.1
/http-proxy-agent/4.0.1:
@@ -11000,11 +10999,6 @@ packages:
resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
dev: false
/is-alphanumeric/1.0.0:
resolution: {integrity: sha512-ZmRL7++ZkcMOfDuWZuMJyIVLr2keE1o/DeNWh1EmgqGhUcV+9BIVsx0BcSBOHTZqzjs4+dISzr2KAeBEWGgXeA==}
engines: {node: '>=0.10.0'}
dev: false
/is-alphanumerical/1.0.4:
resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
dependencies:
@@ -11261,18 +11255,10 @@ packages:
dependencies:
call-bind: 1.0.2
/is-whitespace-character/1.0.4:
resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==}
dev: false
/is-windows/1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
/is-word-character/1.0.4:
resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==}
dev: false
/is-wsl/2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
@@ -11833,7 +11819,6 @@ packages:
/json-schema-traverse/1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
dev: true
/json-schema/0.4.0:
resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==}
@@ -12128,6 +12113,9 @@ packages:
lodash._reinterpolate: 3.0.0
dev: false
/lodash.truncate/4.4.2:
resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
/lodash/4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
@@ -12179,6 +12167,11 @@ packages:
resolution: {integrity: sha512-CHqbAq7NFlW3RSnoWXLJBxCWaZVBrfa9UEHId2M3AW8iEBurbqduNexEUCGc3SHc6iCYXNJCDi903LajSVAEPQ==}
engines: {node: '>=12'}
/lru-cache/7.13.2:
resolution: {integrity: sha512-VJL3nIpA79TodY/ctmZEfhASgqekbT574/c4j3jn4bKXbSCnTTCH/KltZyvL2GlV+tGSMtsWyem8DCX7qKTMBA==}
engines: {node: '>=12'}
dev: false
/lru-queue/0.1.0:
resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==}
dependencies:
@@ -12266,27 +12259,36 @@ packages:
resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==}
engines: {node: '>=8'}
/markdown-escapes/1.0.4:
resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==}
dev: false
/markdown-table/1.1.3:
resolution: {integrity: sha512-1RUZVgQlpJSPWYbFSpmudq5nHY1doEIv89gBtF0s4gW1GF2XorxcA/70M5vq7rLv0a6mhOUccRsqkwhwLCIQ2Q==}
dev: false
/marked/4.0.18:
resolution: {integrity: sha512-wbLDJ7Zh0sqA0Vdg6aqlbT+yPxqLblpAZh1mK2+AO2twQkPywvvqQNfEPVwSSRjZ7dZcdeVBIAgiO7MMp3Dszw==}
engines: {node: '>= 12'}
hasBin: true
/mdast-util-compact/1.0.4:
resolution: {integrity: sha512-3YDMQHI5vRiS2uygEFYaqckibpJtKq5Sj2c8JioeOQBU6INpKbdWzfyLqFFnDwEcEnRFIdMsguzs5pC1Jp4Isg==}
/mdast-util-from-markdown/0.8.5:
resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==}
dependencies:
unist-util-visit: 1.4.1
'@types/mdast': 3.0.10
mdast-util-to-string: 2.0.0
micromark: 2.11.4
parse-entities: 2.0.0
unist-util-stringify-position: 2.0.3
transitivePeerDependencies:
- supports-color
dev: false
/mdast-util-to-string/1.1.0:
resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==}
/mdast-util-to-markdown/0.6.5:
resolution: {integrity: sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==}
dependencies:
'@types/unist': 2.0.6
longest-streak: 2.0.4
mdast-util-to-string: 2.0.0
parse-entities: 2.0.0
repeat-string: 1.6.1
zwitch: 1.0.5
dev: false
/mdast-util-to-string/2.0.0:
resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==}
dev: false
/media-typer/0.3.0:
@@ -12409,6 +12411,15 @@ packages:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
/micromark/2.11.4:
resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==}
dependencies:
debug: 4.3.4
parse-entities: 2.0.0
transitivePeerDependencies:
- supports-color
dev: false
/micromatch/4.0.5:
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
engines: {node: '>=8.6'}
@@ -12601,7 +12612,7 @@ packages:
dependencies:
mkdirp: 0.5.6
ncp: 2.0.0
rimraf: 3.0.2
rimraf: 2.4.5
/nanoresource/1.3.0:
resolution: {integrity: sha512-OI5dswqipmlYfyL3k/YMm7mbERlh4Bd1KuKdMHpeoVD1iVxqxaTMKleB4qaA2mbQZ6/zMNSxCXv9M9P/YbqTuQ==}
@@ -12775,7 +12786,7 @@ packages:
/normalize-package-data/2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
dependencies:
hosted-git-info: 3.0.8
hosted-git-info: 2.8.9
resolve: 1.22.1
semver: 5.7.1
validate-npm-package-license: 3.0.4
@@ -12827,7 +12838,7 @@ packages:
/npm-package-arg/6.1.1:
resolution: {integrity: sha512-qBpssaL3IOZWi5vEKUKW0cO7kzLeT+EQO9W8RsLOZf76KF9E/K9+wH0C7t06HXPpaH8WH5xF1MExLuCwbTqRUg==}
dependencies:
hosted-git-info: 3.0.8
hosted-git-info: 2.8.9
osenv: 0.1.5
semver: 5.7.1
validate-npm-package-name: 3.0.0
@@ -13181,8 +13192,8 @@ packages:
author-regex: 1.0.0
dev: false
/parse-entities/1.2.2:
resolution: {integrity: sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==}
/parse-entities/2.0.0:
resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
dependencies:
character-entities: 1.2.4
character-entities-legacy: 1.1.4
@@ -13241,7 +13252,7 @@ packages:
klaw-sync: 6.0.0
minimist: 1.2.6
open: 7.4.2
rimraf: 3.0.2
rimraf: 2.7.1
semver: 5.7.1
slash: 2.0.0
tmp: 0.0.33
@@ -13702,7 +13713,7 @@ packages:
engines: {node: '>= 0.8'}
dependencies:
bytes: 3.1.2
http-errors: 1.8.1
http-errors: 2.0.0
iconv-lite: 0.4.24
unpipe: 1.0.0
@@ -13860,49 +13871,24 @@ packages:
resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
engines: {node: '>=8'}
/remark-parse/7.0.2_unified@8.4.2:
resolution: {integrity: sha512-9+my0lQS80IQkYXsMA8Sg6m9QfXYJBnXjWYN5U+kFc5/n69t+XZVXU/ZBYr3cYH8FheEGf1v87rkFDhJ8bVgMA==}
/remark-parse/9.0.0_unified@9.2.2:
resolution: {integrity: sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw==}
peerDependencies:
unified: '*'
dependencies:
collapse-white-space: 1.0.6
is-alphabetical: 1.0.4
is-decimal: 1.0.4
is-whitespace-character: 1.0.4
is-word-character: 1.0.4
markdown-escapes: 1.0.4
parse-entities: 1.2.2
repeat-string: 1.6.1
state-toggle: 1.0.3
trim: 1.0.1
trim-trailing-lines: 1.1.4
unherit: 1.1.3
unified: 8.4.2
unist-util-remove-position: 1.1.4
vfile-location: 2.0.6
xtend: 4.0.2
mdast-util-from-markdown: 0.8.5
unified: 9.2.2
transitivePeerDependencies:
- supports-color
dev: false
/remark-stringify/7.0.4_unified@8.4.2:
resolution: {integrity: sha512-qck+8NeA1D0utk1ttKcWAoHRrJxERYQzkHDyn+pF5Z4whX1ug98uCNPPSeFgLSaNERRxnD6oxIug6DzZQth6Pg==}
/remark-stringify/9.0.1_unified@9.2.2:
resolution: {integrity: sha512-mWmNg3ZtESvZS8fv5PTvaPckdL4iNlCHTt8/e/8oN08nArHRHjNZMKzA/YW3+p7/lYqIw4nx1XsjCBo/AxNChg==}
peerDependencies:
unified: '*'
dependencies:
ccount: 1.1.0
is-alphanumeric: 1.0.0
is-decimal: 1.0.4
is-whitespace-character: 1.0.4
longest-streak: 2.0.4
markdown-escapes: 1.0.4
markdown-table: 1.1.3
mdast-util-compact: 1.0.4
parse-entities: 1.2.2
repeat-string: 1.6.1
state-toggle: 1.0.3
stringify-entities: 2.0.0
unherit: 1.1.3
unified: 8.4.2
xtend: 4.0.2
mdast-util-to-markdown: 0.6.5
unified: 9.2.2
dev: false
/remove-bom-buffer/3.0.0:
@@ -13936,7 +13922,7 @@ packages:
resolution: {integrity: sha512-v680o6DdO/y/Aa2GVfdKAz78DCL6FfkMjlVOE9KkVtq+SAd0TCF3PkxvKr95Zf3UaEuiCbFB/w3v62SE743bmw==}
engines: {node: '>=10'}
dependencies:
table: 6.0.4
table: 6.8.0
/repeat-string/1.6.1:
resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
@@ -14013,7 +13999,6 @@ packages:
/require-from-string/2.0.2:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
dev: true
/require-main-filename/2.0.0:
resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==}
@@ -14111,9 +14096,21 @@ packages:
resolution: {integrity: sha512-qTVCDUsBDO74PHen/pEMTHeQXxrCSeTcFhqjy86mkRH5nuGZpEv41ZgGunxmjbl29kvrKJGrgVFThoqXeRORfQ==}
dependencies:
any-promise: 1.3.0
rimraf: 3.0.2
rimraf: 2.7.1
dev: true
/rimraf/2.4.5:
resolution: {integrity: sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==}
hasBin: true
dependencies:
glob: 6.0.4
/rimraf/2.7.1:
resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
hasBin: true
dependencies:
glob: 7.2.3
/rimraf/3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
@@ -14241,7 +14238,7 @@ packages:
escape-html: 1.0.3
etag: 1.8.1
fresh: 0.5.2
http-errors: 1.8.1
http-errors: 2.0.0
mime: 1.6.0
ms: 2.1.3
on-finished: 2.4.1
@@ -14535,14 +14532,6 @@ packages:
as-table: 1.0.55
get-source: 2.0.12
/state-toggle/1.0.3:
resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==}
dev: false
/statuses/1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
/statuses/2.0.1:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
@@ -14660,34 +14649,24 @@ packages:
dependencies:
safe-buffer: 5.2.1
/stringify-entities/2.0.0:
resolution: {integrity: sha512-fqqhZzXyAM6pGD9lky/GOPq6V4X0SeTAFBl0iXb/BzOegl40gpf/bV3QQP7zULNYvjr6+Dx8SCaDULjVoOru0A==}
dependencies:
character-entities-html4: 1.1.4
character-entities-legacy: 1.1.4
is-alphanumerical: 1.0.4
is-decimal: 1.0.4
is-hexadecimal: 1.0.4
dev: false
/strip-ansi/3.0.1:
resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
engines: {node: '>=0.10.0'}
dependencies:
ansi-regex: 5.0.1
ansi-regex: 2.1.1
/strip-ansi/4.0.0:
resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==}
engines: {node: '>=4'}
dependencies:
ansi-regex: 5.0.1
ansi-regex: 3.0.1
dev: true
/strip-ansi/5.2.0:
resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==}
engines: {node: '>=6'}
dependencies:
ansi-regex: 5.0.1
ansi-regex: 4.1.1
dev: true
/strip-ansi/6.0.1:
@@ -14797,14 +14776,15 @@ packages:
semver: 7.3.7
dev: true
/table/6.0.4:
resolution: {integrity: sha512-sBT4xRLdALd+NFBvwOz8bw4b15htyythha+q+DVZqy2RS08PPC8O2sZFgJYEY7bJvbCFKccs+WIZ/cd+xxTWCw==}
/table/6.8.0:
resolution: {integrity: sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==}
engines: {node: '>=10.0.0'}
dependencies:
ajv: 6.12.6
lodash: 4.17.21
ajv: 8.11.0
lodash.truncate: 4.4.2
slice-ansi: 4.0.0
string-width: 4.2.3
strip-ansi: 6.0.1
/tar-fs/2.1.1:
resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==}
@@ -15031,14 +15011,6 @@ packages:
escape-string-regexp: 1.0.5
dev: false
/trim-trailing-lines/1.1.4:
resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==}
dev: false
/trim/1.0.1:
resolution: {integrity: sha512-3JVP2YVqITUisXblCDq/Bi4P9457G/sdEamInkyvCsjbTcXLXIiG7XCb4kGMFWh6JGXesS3TKxOPtrncN/xe8w==}
dev: false
/trough/1.0.5:
resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}
dev: false
@@ -15292,18 +15264,12 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
/unherit/1.1.3:
resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==}
dependencies:
inherits: 2.0.4
xtend: 4.0.2
dev: false
/unified/8.4.2:
resolution: {integrity: sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==}
/unified/9.2.2:
resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==}
dependencies:
bail: 1.0.5
extend: 3.0.2
is-buffer: 2.0.5
is-plain-obj: 2.1.0
trough: 1.0.5
vfile: 4.2.1
@@ -15334,34 +15300,12 @@ packages:
dependencies:
crypto-random-string: 2.0.0
/unist-util-is/3.0.0:
resolution: {integrity: sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==}
dev: false
/unist-util-remove-position/1.1.4:
resolution: {integrity: sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==}
dependencies:
unist-util-visit: 1.4.1
dev: false
/unist-util-stringify-position/2.0.3:
resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
dependencies:
'@types/unist': 2.0.6
dev: false
/unist-util-visit-parents/2.1.2:
resolution: {integrity: sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==}
dependencies:
unist-util-is: 3.0.0
dev: false
/unist-util-visit/1.4.1:
resolution: {integrity: sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==}
dependencies:
unist-util-visit-parents: 2.1.2
dev: false
/universalify/0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
@@ -15489,7 +15433,7 @@ packages:
'@verdaccio/file-locking': 10.3.0
apache-md5: 1.1.7
bcryptjs: 2.4.3
http-errors: 1.8.1
http-errors: 2.0.0
unix-crypt-td-js: 1.1.4
/verdaccio/5.14.0:
@@ -15504,7 +15448,7 @@ packages:
'@verdaccio/ui-theme': 6.0.0-6-next.25
async: 3.2.4
body-parser: 1.20.0
clipanion: 3.2.0-rc.6
clipanion: 3.1.0
compression: 1.7.4
cookies: 0.8.0
cors: 2.8.5
@@ -15516,7 +15460,7 @@ packages:
express-rate-limit: 5.5.1
fast-safe-stringify: 2.1.1
handlebars: 4.7.7
http-errors: 1.8.1
http-errors: 2.0.0
js-yaml: /@zkochan/js-yaml/0.0.6
JSONStream: 1.3.5
jsonwebtoken: 8.5.1
@@ -15561,10 +15505,6 @@ packages:
semver: 7.3.7
dev: false
/vfile-location/2.0.6:
resolution: {integrity: sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==}
dev: false
/vfile-message/2.0.4:
resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==}
dependencies:
@@ -15954,6 +15894,10 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
/zwitch/1.0.5:
resolution: {integrity: sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==}
dev: false
github.com/vercel/pkg/7e4fef9f0828b11c7a9655b95425f32094f2daa2_pp6fkuhwkrqq7cjcj7uqpf37e4:
resolution: {tarball: https://codeload.github.com/vercel/pkg/tar.gz/7e4fef9f0828b11c7a9655b95425f32094f2daa2}
id: github.com/vercel/pkg/7e4fef9f0828b11c7a9655b95425f32094f2daa2

150
typings/local.d.ts vendored
View File

@@ -1,176 +1,142 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
declare module '@pnpm/tabtab' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module 'hyperdrive-schemas' {
const anything: any;
export = anything;
}
declare module '@zeit/fetch-retry' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module 'fuse-native' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module '@zkochan/libnpx/index' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module '@pnpm/npm-conf' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module '@pnpm/npm-conf/lib/types' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module '@pnpm/npm-lifecycle' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module '@pnpm/npm-package-arg' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module '@zkochan/which' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module 'anonymous-npm-registry-client' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module 'ansi-diff' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module 'better-path-resolve' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module '@zkochan/diable' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module 'dint' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module 'exists-link' {
const anything: any;
export = anything;
}
declare module 'fs-vacuum' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module 'graceful-git' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module '@pnpm/graph-sequencer' {
namespace graphSequencer {
type Graph<T> = Map<T, T[]>;
type Groups<T> = Array<T[]>;
type Graph<T> = Map<T, T[]>
type Groups<T> = T[][]
interface Options<T> {
graph: Graph<T>;
groups: Groups<T>;
graph: Graph<T>
groups: Groups<T>
}
interface Result<T> {
safe: boolean;
chunks: Groups<T>;
cycles: Groups<T>;
safe: boolean
chunks: Groups<T>
cycles: Groups<T>
}
type GraphSequencer = <T>(opts: Options<T>) => Result<T>;
type GraphSequencer = <T>(opts: Options<T>) => Result<T>
}
const graphSequencer: graphSequencer.GraphSequencer;
export = graphSequencer;
const graphSequencer: graphSequencer.GraphSequencer
export = graphSequencer
}
declare module 'is-inner-link' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module 'is-port-reachable' {
const anything: any;
export = anything;
}
declare module 'node-fetch-unix' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module 'process-exists' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module 'read-package-json' {
const anything: any;
export = anything;
}
declare module 'remove-all-except-outer-links' {
const anything: any;
export = anything;
}
declare module 'socks-proxy-agent' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module 'stacktracey' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module 'yaml-tag' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module 'decompress-maybe' {
const anything: any;
export = anything;
}
declare module 'stream-cache' {
const anything: any;
export = anything;
}
declare module 'mdast-util-to-string' {
const anything: any;
export = anything;
const anything: any
export = anything
}
declare module 'patch-package/dist/applyPatches' {
export function applyPatch(opts: any): boolean;
export function applyPatch (opts: any): boolean
}

View File

@@ -8,10 +8,10 @@
"lint": "eslint src/**/*.ts"
},
"dependencies": {
"mdast-util-to-string": "^1.1.0",
"remark-parse": "^7.0.2",
"remark-stringify": "^7.0.4",
"unified": "^8.4.2"
"mdast-util-to-string": "^2.0.0",
"remark-parse": "^9.0.0",
"remark-stringify": "^9.0.1",
"unified": "^9.2.2"
},
"devDependencies": {
"@pnpm/get-release-text": "workspace:*"