diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 5099a48..ebfa789 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -56,14 +56,7 @@ const finalConfig = { } ], "import/no-internal-modules": [ - "warn", { - "allow": [ - "source-map-support/*", - "lodash/*", - "aws-sdk/**/*", - "types/*" - ] - } + "off" ] } } diff --git a/.vscode/settings.json b/.vscode/settings.json index e76cbb3..4798039 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -46,6 +46,7 @@ }, "cSpell.words": [ "bignumber", + "boundingbox", "mapbox", "quadkey", "typechain", diff --git a/.yarnrc.yml b/.yarnrc.yml index 0999ec9..753ad4d 100644 --- a/.yarnrc.yml +++ b/.yarnrc.yml @@ -8,4 +8,4 @@ plugins: - path: .yarn/plugins/@yarnpkg/plugin-outdated.cjs spec: "https://mskelton.dev/yarn-outdated/v3" -yarnPath: .yarn/releases/yarn-4.1.1.cjs +yarnPath: .yarn/releases/yarn-4.3.1.cjs diff --git a/package.json b/package.json index dbd561d..679ecbd 100644 --- a/package.json +++ b/package.json @@ -43,26 +43,29 @@ "module": "dist/node/index.js", "types": "dist/node/index.d.ts", "license": "LGPL-3.0-only", - "packageManager": "yarn@4.1.1", + "packageManager": "yarn@4.3.1", "workspaces": [ "packages/*" ], "dependencies": { - "@xyo-network/ethers-wrappers": "workspace:~", - "@xyo-network/sdk-geo": "workspace:~" + "@xyo-network/ethers-wrappers": "workspace:^", + "@xyo-network/sdk-geo": "workspace:^" }, "devDependencies": { "@types/jest": "^29.5.12", - "@types/mocha": "^10.0.6", - "@xylabs/eslint-config": "^3.5.2", - "@xylabs/ts-scripts-yarn3": "^3.5.2", - "@xylabs/tsconfig": "^3.5.2", - "@xylabs/tsconfig-jest": "^3.5.2", + "@types/mocha": "^10.0.7", + "@xylabs/eslint-config": "^3.11.12", + "@xylabs/ts-scripts-yarn3": "^3.11.12", + "@xylabs/tsconfig": "^3.11.12", + "@xylabs/tsconfig-jest": "^3.11.12", "dotenv": "^16.4.5", - "eslint": "^8.57.0", - "eslint-plugin-unicorn": "^51.0.1", + "eslint": "^9.6.0", + "eslint-plugin-unicorn": "^54.0.0", "jest": "^29.7.0", - "typescript": "^5.4.2" + "typescript": "^5.5.3" + }, + "resolutions": { + "mapbox-gl": "~3.2" }, "scripts": { "test": "yarn jest", diff --git a/packages/ethers-wrappers/package.json b/packages/ethers-wrappers/package.json index 444e035..c26dc33 100644 --- a/packages/ethers-wrappers/package.json +++ b/packages/ethers-wrappers/package.json @@ -45,16 +45,16 @@ "types": "dist/node/index.d.ts", "license": "LGPL-3.0-only", "dependencies": { - "@xylabs/assert": "^3.0.11", - "@xylabs/eth-address": "^3.0.11", + "@xylabs/assert": "^3.5.5", + "@xylabs/eth-address": "^3.5.5", "@xyo-network/typechain": "^3.0.5", - "ethers": "^6.11.1" + "ethers": "^6.13.1" }, "devDependencies": { - "@xylabs/ts-scripts-yarn3": "^3.5.2", - "@xylabs/tsconfig": "^3.5.2", - "ethers": "^6.11.1", - "typescript": "^5.4.2" + "@xylabs/ts-scripts-yarn3": "^3.11.12", + "@xylabs/tsconfig": "^3.11.12", + "ethers": "^6.13.1", + "typescript": "^5.5.3" }, "sideEffects": false, "packageManager": "yarn@3.2.0", diff --git a/packages/ethers-wrappers/src/Erc20.ts b/packages/ethers-wrappers/src/Erc20.ts index b1bef29..ae87102 100644 --- a/packages/ethers-wrappers/src/Erc20.ts +++ b/packages/ethers-wrappers/src/Erc20.ts @@ -3,7 +3,7 @@ import { EthAddress } from '@xylabs/eth-address' import { BurnableErc20, BurnableErc20__factory as BurnableErc20Factory } from '@xyo-network/typechain' import { Provider, Signer } from 'ethers' -import { XyoEthersWrapperBase } from './EthersBase' +import { XyoEthersWrapperBase } from './EthersBase.js' /** @deprecated use @xyo-network/typechain instead*/ export class XyoErc20Wrapper extends XyoEthersWrapperBase { diff --git a/packages/ethers-wrappers/src/index.ts b/packages/ethers-wrappers/src/index.ts index c466e19..d38d37c 100644 --- a/packages/ethers-wrappers/src/index.ts +++ b/packages/ethers-wrappers/src/index.ts @@ -1,2 +1,2 @@ -export * from './Erc20' -export * from './EthersBase' +export * from './Erc20.js' +export * from './EthersBase.js' diff --git a/packages/ethers-wrappers/tsconfig.json b/packages/ethers-wrappers/tsconfig.json index 28529c2..8d05508 100644 --- a/packages/ethers-wrappers/tsconfig.json +++ b/packages/ethers-wrappers/tsconfig.json @@ -1,5 +1,7 @@ { "compilerOptions": { + "moduleResolution": "NodeNext", + "module": "NodeNext", "typeRoots": [] }, "exclude": ["**/spec/**/*"], diff --git a/packages/geo/package.json b/packages/geo/package.json index 8b11450..fd72acd 100644 --- a/packages/geo/package.json +++ b/packages/geo/package.json @@ -45,13 +45,13 @@ "license": "LGPL-3.0-only", "dependencies": { "geojson": "^0.5.0", - "mapbox-gl": "^3.2.0" + "mapbox-gl": "^3.5.1" }, "devDependencies": { "@types/mapbox-gl": "^3.1.0", - "@xylabs/ts-scripts-yarn3": "^3.5.2", - "@xylabs/tsconfig": "^3.5.2", - "typescript": "^5.4.2" + "@xylabs/ts-scripts-yarn3": "^3.11.12", + "@xylabs/tsconfig": "^3.11.12", + "typescript": "^5.5.3" }, "sideEffects": false, "packageManager": "yarn@3.2.0", diff --git a/packages/geo/src/GeoJson.ts b/packages/geo/src/GeoJson.ts index 8e963f3..42350a3 100644 --- a/packages/geo/src/GeoJson.ts +++ b/packages/geo/src/GeoJson.ts @@ -2,7 +2,7 @@ import { Feature, FeatureCollection, Geometry, Point, Polygon } from 'geojson' // eslint-disable-next-line no-restricted-imports import { GeoJSONSourceRaw, LngLat } from 'mapbox-gl' -import { boundingBoxToCenter, boundingBoxToPolygon, tileFromQuadkey, tileToBoundingBox } from './mercator' +import { boundingBoxToCenter, boundingBoxToPolygon, tileFromQuadkey, tileToBoundingBox } from './mercator/index.js' class GeoJson { private _lngLat?: LngLat diff --git a/packages/geo/src/index.ts b/packages/geo/src/index.ts index c5d20bc..d7888a2 100644 --- a/packages/geo/src/index.ts +++ b/packages/geo/src/index.ts @@ -1,3 +1,3 @@ -export * from './GeoJson' -export * from './LayerBase' -export * from './mercator' +export * from './GeoJson.js' +export * from './LayerBase.js' +export * from './mercator/index.js' diff --git a/packages/geo/src/mercator/boundingbox/index.ts b/packages/geo/src/mercator/boundingbox/index.ts index 35e31f6..dc0fe94 100644 --- a/packages/geo/src/mercator/boundingbox/index.ts +++ b/packages/geo/src/mercator/boundingbox/index.ts @@ -1 +1 @@ -export * from './to' +export * from './to/index.js' diff --git a/packages/geo/src/mercator/boundingbox/to/boundary.ts b/packages/geo/src/mercator/boundingbox/to/boundary.ts new file mode 100644 index 0000000..2378655 --- /dev/null +++ b/packages/geo/src/mercator/boundingbox/to/boundary.ts @@ -0,0 +1,5 @@ +import { MercatorBoundary, MercatorBoundingBox } from '../../types.js' + +export const boundingBoxToBoundary = (box: MercatorBoundingBox): MercatorBoundary => { + return [box.getNorthWest(), box.getNorthEast(), box.getSouthEast(), box.getSouthWest(), box.getNorthWest()] +} diff --git a/packages/geo/src/mercator/boundingbox/to/boundry.ts b/packages/geo/src/mercator/boundingbox/to/boundry.ts deleted file mode 100644 index 7ffe7e1..0000000 --- a/packages/geo/src/mercator/boundingbox/to/boundry.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { MercatorBoundingBox, MercatorBoundry } from '../../types' - -export const boundingBoxToBoundry = (box: MercatorBoundingBox): MercatorBoundry => { - return [box.getNorthWest(), box.getNorthEast(), box.getSouthEast(), box.getSouthWest(), box.getNorthWest()] -} diff --git a/packages/geo/src/mercator/boundingbox/to/center.ts b/packages/geo/src/mercator/boundingbox/to/center.ts index d182f2d..15994db 100644 --- a/packages/geo/src/mercator/boundingbox/to/center.ts +++ b/packages/geo/src/mercator/boundingbox/to/center.ts @@ -1,4 +1,4 @@ -import { MercatorBoundingBox } from '../../types' +import { MercatorBoundingBox } from '../../types.js' export const boundingBoxToCenter = (boundingBox: MercatorBoundingBox, decimal = 6) => { const west = boundingBox.getWest() diff --git a/packages/geo/src/mercator/boundingbox/to/index.ts b/packages/geo/src/mercator/boundingbox/to/index.ts index 46995f2..8c3e3f5 100644 --- a/packages/geo/src/mercator/boundingbox/to/index.ts +++ b/packages/geo/src/mercator/boundingbox/to/index.ts @@ -1,3 +1,3 @@ -export { boundingBoxToBoundry } from './boundry' -export { boundingBoxToCenter } from './center' -export { boundingBoxToPolygon } from './polygon' +export { boundingBoxToBoundary } from './boundary.js' +export { boundingBoxToCenter } from './center.js' +export { boundingBoxToPolygon } from './polygon.js' diff --git a/packages/geo/src/mercator/boundingbox/to/polygon.ts b/packages/geo/src/mercator/boundingbox/to/polygon.ts index 53a22d1..1f64c61 100644 --- a/packages/geo/src/mercator/boundingbox/to/polygon.ts +++ b/packages/geo/src/mercator/boundingbox/to/polygon.ts @@ -1,10 +1,10 @@ import { Polygon } from 'geojson' -import { MercatorBoundingBox, MercatorLngLat } from '../../types' -import { boundingBoxToBoundry } from './boundry' +import { MercatorBoundingBox, MercatorLngLat } from '../../types.js' +import { boundingBoxToBoundary } from './boundary.js' export const boundingBoxToPolygon = (box: MercatorBoundingBox): Polygon => { - const boundry = boundingBoxToBoundry(box) + const boundry = boundingBoxToBoundary(box) return { coordinates: [boundry.map((lnglng: MercatorLngLat) => lnglng.toArray())], type: 'Polygon', diff --git a/packages/geo/src/mercator/index.ts b/packages/geo/src/mercator/index.ts index 13ce0d0..508f373 100644 --- a/packages/geo/src/mercator/index.ts +++ b/packages/geo/src/mercator/index.ts @@ -1,5 +1,5 @@ -export * from './boundingbox' -export * from './constants' -export * from './tile' -export * from './tiles' -export * from './types' +export * from './boundingbox/index.js' +export * from './constants.js' +export * from './tile/index.js' +export * from './tiles/index.js' +export * from './types.js' diff --git a/packages/geo/src/mercator/tile/from/index.ts b/packages/geo/src/mercator/tile/from/index.ts index a29bb97..ce7fd35 100644 --- a/packages/geo/src/mercator/tile/from/index.ts +++ b/packages/geo/src/mercator/tile/from/index.ts @@ -1,2 +1,2 @@ -export { tileFromPoint } from './point' -export { tileFromQuadkey } from './quadkey' +export { tileFromPoint } from './point.js' +export { tileFromQuadkey } from './quadkey.js' diff --git a/packages/geo/src/mercator/tile/from/point.ts b/packages/geo/src/mercator/tile/from/point.ts index eaf0dd3..fb6df86 100644 --- a/packages/geo/src/mercator/tile/from/point.ts +++ b/packages/geo/src/mercator/tile/from/point.ts @@ -1,5 +1,5 @@ -import { d2r } from '../../constants' -import { MercatorLngLat } from '../../types' +import { d2r } from '../../constants.js' +import { MercatorLngLat } from '../../types.js' const pointToTileFraction = (point: MercatorLngLat, z: number) => { const sin = Math.sin(point.lat * d2r) diff --git a/packages/geo/src/mercator/tile/index.ts b/packages/geo/src/mercator/tile/index.ts index 210634c..615f8ae 100644 --- a/packages/geo/src/mercator/tile/index.ts +++ b/packages/geo/src/mercator/tile/index.ts @@ -1,2 +1,2 @@ -export * from './from' -export * from './to' +export * from './from/index.js' +export * from './to/index.js' diff --git a/packages/geo/src/mercator/tile/to/boundingbox.ts b/packages/geo/src/mercator/tile/to/boundingbox.ts index de9fd1c..859c2f3 100644 --- a/packages/geo/src/mercator/tile/to/boundingbox.ts +++ b/packages/geo/src/mercator/tile/to/boundingbox.ts @@ -1,8 +1,8 @@ // eslint-disable-next-line no-restricted-imports import { LngLat } from 'mapbox-gl' -import { r2d } from '../../constants' -import { MercatorBoundingBox, MercatorTile } from '../../types' +import { r2d } from '../../constants.js' +import { MercatorBoundingBox, MercatorTile } from '../../types.js' const toLongitude = (x: number, z: number): number => { return (x / Math.pow(2, z)) * 360 - 180 diff --git a/packages/geo/src/mercator/tile/to/children.ts b/packages/geo/src/mercator/tile/to/children.ts index a19cffe..d798944 100644 --- a/packages/geo/src/mercator/tile/to/children.ts +++ b/packages/geo/src/mercator/tile/to/children.ts @@ -1,4 +1,4 @@ -import { MercatorTile } from '../../types' +import { MercatorTile } from '../../types.js' const tileToChildren = (tile: MercatorTile) => { return [ diff --git a/packages/geo/src/mercator/tile/to/geoJson.ts b/packages/geo/src/mercator/tile/to/geoJson.ts index d26286e..15901e9 100644 --- a/packages/geo/src/mercator/tile/to/geoJson.ts +++ b/packages/geo/src/mercator/tile/to/geoJson.ts @@ -1,7 +1,7 @@ import { Polygon, Position } from 'geojson' -import { MercatorTile } from '../../types' -import { tileToBoundingBox } from './boundingbox' +import { MercatorTile } from '../../types.js' +import { tileToBoundingBox } from './boundingbox.js' const tileToGeoJson = (tile: MercatorTile): Polygon => { const box = tileToBoundingBox(tile) diff --git a/packages/geo/src/mercator/tile/to/index.ts b/packages/geo/src/mercator/tile/to/index.ts index e86e546..00f6fdb 100644 --- a/packages/geo/src/mercator/tile/to/index.ts +++ b/packages/geo/src/mercator/tile/to/index.ts @@ -1,7 +1,7 @@ -export { tileToBoundingBox } from './boundingbox' -export { tileToChildren } from './children' -export { tileToGeoJson } from './geoJson' -export { tileToParent } from './parent' -export { tileToPoint } from './point' -export { tileToQuadkey } from './quadkey' -export { tileToSiblings } from './siblings' +export { tileToBoundingBox } from './boundingbox.js' +export { tileToChildren } from './children.js' +export { tileToGeoJson } from './geoJson.js' +export { tileToParent } from './parent.js' +export { tileToPoint } from './point.js' +export { tileToQuadkey } from './quadkey.js' +export { tileToSiblings } from './siblings.js' diff --git a/packages/geo/src/mercator/tile/to/parent.ts b/packages/geo/src/mercator/tile/to/parent.ts index a8a2779..08b609d 100644 --- a/packages/geo/src/mercator/tile/to/parent.ts +++ b/packages/geo/src/mercator/tile/to/parent.ts @@ -1,4 +1,4 @@ -import { MercatorTile } from '../../types' +import { MercatorTile } from '../../types.js' const tileToParent = (tile: MercatorTile): MercatorTile => { return [tile[0] >> 1, tile[1] >> 1, tile[2] - 1] diff --git a/packages/geo/src/mercator/tile/to/point.ts b/packages/geo/src/mercator/tile/to/point.ts index e01660a..f0cb171 100644 --- a/packages/geo/src/mercator/tile/to/point.ts +++ b/packages/geo/src/mercator/tile/to/point.ts @@ -1,5 +1,5 @@ -import { MercatorLngLat, MercatorTile } from '../../types' -import { tileToBoundingBox } from './boundingbox' +import { MercatorLngLat, MercatorTile } from '../../types.js' +import { tileToBoundingBox } from './boundingbox.js' const tileToPoint = (tile: MercatorTile): MercatorLngLat => { const boundingBox = tileToBoundingBox(tile) diff --git a/packages/geo/src/mercator/tile/to/quadkey.ts b/packages/geo/src/mercator/tile/to/quadkey.ts index 5509142..321cf5b 100644 --- a/packages/geo/src/mercator/tile/to/quadkey.ts +++ b/packages/geo/src/mercator/tile/to/quadkey.ts @@ -1,4 +1,4 @@ -import { MercatorTile } from '../../types' +import { MercatorTile } from '../../types.js' const tileToQuadkey = (tile: MercatorTile): string => { let index = '' diff --git a/packages/geo/src/mercator/tile/to/siblings.ts b/packages/geo/src/mercator/tile/to/siblings.ts index d607bee..462e51e 100644 --- a/packages/geo/src/mercator/tile/to/siblings.ts +++ b/packages/geo/src/mercator/tile/to/siblings.ts @@ -1,6 +1,6 @@ -import { MercatorTile } from '../../types' -import { tileToChildren } from './children' -import { tileToParent } from './parent' +import { MercatorTile } from '../../types.js' +import { tileToChildren } from './children.js' +import { tileToParent } from './parent.js' const tileToSiblings = (tile: MercatorTile): MercatorTile[] => { return tileToChildren(tileToParent(tile)) diff --git a/packages/geo/src/mercator/tiles/equal.ts b/packages/geo/src/mercator/tiles/equal.ts index 15eb233..fb360b5 100644 --- a/packages/geo/src/mercator/tiles/equal.ts +++ b/packages/geo/src/mercator/tiles/equal.ts @@ -1,4 +1,4 @@ -import { MercatorTile } from '../types' +import { MercatorTile } from '../types.js' const tilesEqual = (tile1: MercatorTile, tile2: MercatorTile) => { return tile1[0] === tile2[0] && tile1[1] === tile2[1] && tile1[2] === tile2[2] diff --git a/packages/geo/src/mercator/tiles/from/boundingbox.ts b/packages/geo/src/mercator/tiles/from/boundingbox.ts index 31ea014..8bae94c 100644 --- a/packages/geo/src/mercator/tiles/from/boundingbox.ts +++ b/packages/geo/src/mercator/tiles/from/boundingbox.ts @@ -1,5 +1,5 @@ -import { tileFromPoint } from '../../tile' -import { MercatorBoundingBox, MercatorTile } from '../../types' +import { tileFromPoint } from '../../tile/index.js' +import { MercatorBoundingBox, MercatorTile } from '../../types.js' const tilesFromBoundingBox = (box: MercatorBoundingBox, zoom: number): MercatorTile[] => { const nw = tileFromPoint(box.getNorthWest(), zoom) diff --git a/packages/geo/src/mercator/tiles/from/index.ts b/packages/geo/src/mercator/tiles/from/index.ts index 7404b03..0483095 100644 --- a/packages/geo/src/mercator/tiles/from/index.ts +++ b/packages/geo/src/mercator/tiles/from/index.ts @@ -1 +1 @@ -export { tilesFromBoundingBox } from './boundingbox' +export { tilesFromBoundingBox } from './boundingbox.js' diff --git a/packages/geo/src/mercator/tiles/hasSiblings.ts b/packages/geo/src/mercator/tiles/hasSiblings.ts index 1989755..cdc4b56 100644 --- a/packages/geo/src/mercator/tiles/hasSiblings.ts +++ b/packages/geo/src/mercator/tiles/hasSiblings.ts @@ -1,6 +1,6 @@ -import { tileToSiblings } from '../tile' -import { MercatorTile } from '../types' -import { tilesHasTile } from './hasTile' +import { tileToSiblings } from '../tile/index.js' +import { MercatorTile } from '../types.js' +import { tilesHasTile } from './hasTile.js' const hasSiblings = (tiles: MercatorTile[], tile: MercatorTile) => { const siblings = tileToSiblings(tile) diff --git a/packages/geo/src/mercator/tiles/hasTile.ts b/packages/geo/src/mercator/tiles/hasTile.ts index d127c17..8cfb780 100644 --- a/packages/geo/src/mercator/tiles/hasTile.ts +++ b/packages/geo/src/mercator/tiles/hasTile.ts @@ -1,5 +1,5 @@ -import { MercatorTile } from '../types' -import { tilesEqual } from './equal' +import { MercatorTile } from '../types.js' +import { tilesEqual } from './equal.js' const tilesHasTile = (tiles: MercatorTile[], tile: MercatorTile) => { for (const tileToCheck of tiles) { diff --git a/packages/geo/src/mercator/tiles/index.ts b/packages/geo/src/mercator/tiles/index.ts index a6252ee..02f33f5 100644 --- a/packages/geo/src/mercator/tiles/index.ts +++ b/packages/geo/src/mercator/tiles/index.ts @@ -1,3 +1,3 @@ -export { tilesEqual } from './equal' -export * from './from' -export { tilesHasTile } from './hasTile' +export { tilesEqual } from './equal.js' +export * from './from/index.js' +export { tilesHasTile } from './hasTile.js' diff --git a/packages/geo/src/mercator/types.ts b/packages/geo/src/mercator/types.ts index 1227075..04c2323 100644 --- a/packages/geo/src/mercator/types.ts +++ b/packages/geo/src/mercator/types.ts @@ -2,9 +2,9 @@ import { LngLat, LngLatBounds } from 'mapbox-gl' type MercatorTile = number[] -type MercatorBoundry = MercatorLngLat[] +type MercatorBoundary = MercatorLngLat[] class MercatorBoundingBox extends LngLatBounds {} class MercatorLngLat extends LngLat {} export { MercatorBoundingBox, MercatorLngLat } -export type { MercatorBoundry, MercatorTile } +export type { MercatorBoundary, MercatorTile } diff --git a/packages/geo/tsconfig.json b/packages/geo/tsconfig.json index 28529c2..8d05508 100644 --- a/packages/geo/tsconfig.json +++ b/packages/geo/tsconfig.json @@ -1,5 +1,7 @@ { "compilerOptions": { + "moduleResolution": "NodeNext", + "module": "NodeNext", "typeRoots": [] }, "exclude": ["**/spec/**/*"], diff --git a/packages/meta/package.json b/packages/meta/package.json index c40e7f5..e61b9d6 100644 --- a/packages/meta/package.json +++ b/packages/meta/package.json @@ -47,10 +47,10 @@ "cheerio": "^1.0.0-rc.12" }, "devDependencies": { - "@xylabs/ts-scripts-yarn3": "^3.5.2", - "@xylabs/tsconfig": "^3.5.2", + "@xylabs/ts-scripts-yarn3": "^3.11.12", + "@xylabs/tsconfig": "^3.11.12", "jest-serializer-html": "^7.1.0", - "typescript": "^5.4.2" + "typescript": "^5.5.3" }, "sideEffects": false, "packageManager": "yarn@3.2.0", diff --git a/packages/meta/src/html/index.ts b/packages/meta/src/html/index.ts index bd6e49a..99b5ca5 100644 --- a/packages/meta/src/html/index.ts +++ b/packages/meta/src/html/index.ts @@ -1 +1 @@ -export * from './mergeDocumentHead' +export * from './mergeDocumentHead.js' diff --git a/packages/meta/src/index.ts b/packages/meta/src/index.ts index a34b118..570a5b2 100644 --- a/packages/meta/src/index.ts +++ b/packages/meta/src/index.ts @@ -1,3 +1,3 @@ -export * from './html' -export * from './meta' -export * from './models' +export * from './html/index.js' +export * from './meta/index.js' +export * from './models/index.js' diff --git a/packages/meta/src/lib/index.ts b/packages/meta/src/lib/index.ts index dbe5e0c..40722d4 100644 --- a/packages/meta/src/lib/index.ts +++ b/packages/meta/src/lib/index.ts @@ -1 +1 @@ -export * from './getMetaAsDict' +export * from './getMetaAsDict.js' diff --git a/packages/meta/src/meta/builder.ts b/packages/meta/src/meta/builder.ts index 2e1efeb..44d20fb 100644 --- a/packages/meta/src/meta/builder.ts +++ b/packages/meta/src/meta/builder.ts @@ -1,7 +1,7 @@ import { CheerioAPI, load } from 'cheerio' -import { getMetaAsDict } from '../lib' -import { Meta } from '../models' +import { getMetaAsDict } from '../lib/index.js' +import { Meta } from '../models/index.js' /* test change */ diff --git a/packages/meta/src/meta/index.ts b/packages/meta/src/meta/index.ts index ceabd57..1a53716 100644 --- a/packages/meta/src/meta/index.ts +++ b/packages/meta/src/meta/index.ts @@ -1 +1 @@ -export * from './builder' +export * from './builder.js' diff --git a/packages/meta/src/models/Meta.ts b/packages/meta/src/models/Meta.ts index 0897b99..e7a4342 100644 --- a/packages/meta/src/models/Meta.ts +++ b/packages/meta/src/models/Meta.ts @@ -1,5 +1,5 @@ -import { OpenGraphMeta } from './OpenGraph' -import { TwitterMeta } from './Twitter' +import { OpenGraphMeta } from './OpenGraph/index.js' +import { TwitterMeta } from './Twitter/index.js' export interface Meta { description?: string diff --git a/packages/meta/src/models/OpenGraph/OpenGraphMeta.ts b/packages/meta/src/models/OpenGraph/OpenGraphMeta.ts index 65e66ac..2fe129c 100644 --- a/packages/meta/src/models/OpenGraph/OpenGraphMeta.ts +++ b/packages/meta/src/models/OpenGraph/OpenGraphMeta.ts @@ -1,4 +1,4 @@ -import { OpenGraphStructuredProperty } from './OpenGraphStructuredProperty' +import { OpenGraphStructuredProperty } from './OpenGraphStructuredProperty.js' // TODO: There is slightly different fields for video/image/audio and we should create // separate interfaces for each diff --git a/packages/meta/src/models/OpenGraph/OpenGraphStructuredProperty.ts b/packages/meta/src/models/OpenGraph/OpenGraphStructuredProperty.ts index aeb039b..5c3b962 100644 --- a/packages/meta/src/models/OpenGraph/OpenGraphStructuredProperty.ts +++ b/packages/meta/src/models/OpenGraph/OpenGraphStructuredProperty.ts @@ -1,3 +1,3 @@ -import { OpenGraphStructured } from './OpenGraphStructured' +import { OpenGraphStructured } from './OpenGraphStructured.js' export type OpenGraphStructuredProperty = string | OpenGraphStructured | (string | OpenGraphStructured)[] diff --git a/packages/meta/src/models/OpenGraph/index.ts b/packages/meta/src/models/OpenGraph/index.ts index fbedcb8..ed1b922 100644 --- a/packages/meta/src/models/OpenGraph/index.ts +++ b/packages/meta/src/models/OpenGraph/index.ts @@ -1,3 +1,3 @@ -export * from './OpenGraphMeta' -export * from './OpenGraphStructured' -export * from './OpenGraphStructuredProperty' +export * from './OpenGraphMeta.js' +export * from './OpenGraphStructured.js' +export * from './OpenGraphStructuredProperty.js' diff --git a/packages/meta/src/models/Twitter/Twitter.ts b/packages/meta/src/models/Twitter/Twitter.ts index 4dec0d2..6747152 100644 --- a/packages/meta/src/models/Twitter/Twitter.ts +++ b/packages/meta/src/models/Twitter/Twitter.ts @@ -1,5 +1,5 @@ -import { TwitterApp } from './TwitterApp' -import { TwitterPlayer } from './TwitterPlayer' +import { TwitterApp } from './TwitterApp.js' +import { TwitterPlayer } from './TwitterPlayer.js' /** * https://developer.twitter.com/en/docs/twitter-for-websites/cards/overview/markup diff --git a/packages/meta/src/models/Twitter/index.ts b/packages/meta/src/models/Twitter/index.ts index 5f5cc97..cb9fca7 100644 --- a/packages/meta/src/models/Twitter/index.ts +++ b/packages/meta/src/models/Twitter/index.ts @@ -1,3 +1,3 @@ -export * from './Twitter' -export * from './TwitterApp' -export * from './TwitterPlayer' +export * from './Twitter.js' +export * from './TwitterApp.js' +export * from './TwitterPlayer.js' diff --git a/packages/meta/src/models/index.ts b/packages/meta/src/models/index.ts index 2d919a2..05d2d69 100644 --- a/packages/meta/src/models/index.ts +++ b/packages/meta/src/models/index.ts @@ -1,3 +1,3 @@ -export * from './Meta' -export * from './OpenGraph' -export * from './Twitter' +export * from './Meta.js' +export * from './OpenGraph/index.js' +export * from './Twitter/index.js' diff --git a/packages/meta/tsconfig.json b/packages/meta/tsconfig.json index 28529c2..8d05508 100644 --- a/packages/meta/tsconfig.json +++ b/packages/meta/tsconfig.json @@ -1,5 +1,7 @@ { "compilerOptions": { + "moduleResolution": "NodeNext", + "module": "NodeNext", "typeRoots": [] }, "exclude": ["**/spec/**/*"], diff --git a/tsconfig.json b/tsconfig.json index cf0b7e4..5c31494 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { - "emitDecoratorMetadata": true, + "moduleResolution": "NodeNext", + "module": "NodeNext", "experimentalDecorators": true, "typeRoots": [] }, diff --git a/yarn.lock b/yarn.lock index c7faab3..781bc1b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -176,10 +176,10 @@ __metadata: languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.22.20": - version: 7.22.20 - resolution: "@babel/helper-validator-identifier@npm:7.22.20" - checksum: 10/df882d2675101df2d507b95b195ca2f86a3ef28cb711c84f37e79ca23178e13b9f0d8b522774211f51e40168bf5142be4c1c9776a150cddb61a0d5bf3e95750b +"@babel/helper-validator-identifier@npm:^7.22.20, @babel/helper-validator-identifier@npm:^7.24.5": + version: 7.24.7 + resolution: "@babel/helper-validator-identifier@npm:7.24.7" + checksum: 10/86875063f57361471b531dbc2ea10bbf5406e12b06d249b03827d361db4cad2388c6f00936bcd9dc86479f7e2c69ea21412c2228d4b3672588b754b70a449d4b languageName: node linkType: hard @@ -438,156 +438,163 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/android-arm64@npm:0.19.6" +"@esbuild/aix-ppc64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/aix-ppc64@npm:0.21.5" + conditions: os=aix & cpu=ppc64 + languageName: node + linkType: hard + +"@esbuild/android-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/android-arm64@npm:0.21.5" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@esbuild/android-arm@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/android-arm@npm:0.19.6" +"@esbuild/android-arm@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/android-arm@npm:0.21.5" conditions: os=android & cpu=arm languageName: node linkType: hard -"@esbuild/android-x64@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/android-x64@npm:0.19.6" +"@esbuild/android-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/android-x64@npm:0.21.5" conditions: os=android & cpu=x64 languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/darwin-arm64@npm:0.19.6" +"@esbuild/darwin-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/darwin-arm64@npm:0.21.5" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/darwin-x64@npm:0.19.6" +"@esbuild/darwin-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/darwin-x64@npm:0.21.5" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/freebsd-arm64@npm:0.19.6" +"@esbuild/freebsd-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/freebsd-arm64@npm:0.21.5" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/freebsd-x64@npm:0.19.6" +"@esbuild/freebsd-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/freebsd-x64@npm:0.21.5" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/linux-arm64@npm:0.19.6" +"@esbuild/linux-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-arm64@npm:0.21.5" conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/linux-arm@npm:0.19.6" +"@esbuild/linux-arm@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-arm@npm:0.21.5" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/linux-ia32@npm:0.19.6" +"@esbuild/linux-ia32@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-ia32@npm:0.21.5" conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/linux-loong64@npm:0.19.6" +"@esbuild/linux-loong64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-loong64@npm:0.21.5" conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/linux-mips64el@npm:0.19.6" +"@esbuild/linux-mips64el@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-mips64el@npm:0.21.5" conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/linux-ppc64@npm:0.19.6" +"@esbuild/linux-ppc64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-ppc64@npm:0.21.5" conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/linux-riscv64@npm:0.19.6" +"@esbuild/linux-riscv64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-riscv64@npm:0.21.5" conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/linux-s390x@npm:0.19.6" +"@esbuild/linux-s390x@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-s390x@npm:0.21.5" conditions: os=linux & cpu=s390x languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/linux-x64@npm:0.19.6" +"@esbuild/linux-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-x64@npm:0.21.5" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/netbsd-x64@npm:0.19.6" +"@esbuild/netbsd-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/netbsd-x64@npm:0.21.5" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/openbsd-x64@npm:0.19.6" +"@esbuild/openbsd-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/openbsd-x64@npm:0.21.5" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/sunos-x64@npm:0.19.6" +"@esbuild/sunos-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/sunos-x64@npm:0.21.5" conditions: os=sunos & cpu=x64 languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/win32-arm64@npm:0.19.6" +"@esbuild/win32-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/win32-arm64@npm:0.21.5" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/win32-ia32@npm:0.19.6" +"@esbuild/win32-ia32@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/win32-ia32@npm:0.21.5" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.19.6": - version: 0.19.6 - resolution: "@esbuild/win32-x64@npm:0.19.6" +"@esbuild/win32-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/win32-x64@npm:0.21.5" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -603,34 +610,52 @@ __metadata: languageName: node linkType: hard -"@eslint-community/regexpp@npm:^4.5.1, @eslint-community/regexpp@npm:^4.6.1": - version: 4.10.0 - resolution: "@eslint-community/regexpp@npm:4.10.0" - checksum: 10/8c36169c815fc5d726078e8c71a5b592957ee60d08c6470f9ce0187c8046af1a00afbda0a065cc40ff18d5d83f82aed9793c6818f7304a74a7488dc9f3ecbd42 +"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.6.1": + version: 4.11.0 + resolution: "@eslint-community/regexpp@npm:4.11.0" + checksum: 10/f053f371c281ba173fe6ee16dbc4fe544c84870d58035ccca08dba7f6ce1830d895ce3237a0db89ba37616524775dca82f1c502066b58e2d5712d7f87f5ba17c languageName: node linkType: hard -"@eslint/eslintrc@npm:^2.1.4": - version: 2.1.4 - resolution: "@eslint/eslintrc@npm:2.1.4" +"@eslint/config-array@npm:^0.17.0": + version: 0.17.0 + resolution: "@eslint/config-array@npm:0.17.0" + dependencies: + "@eslint/object-schema": "npm:^2.1.4" + debug: "npm:^4.3.1" + minimatch: "npm:^3.1.2" + checksum: 10/4609b94519cd63ed1aba1429a53c0eb3cb5585056ffaa10184f0b7b91ceaed7ed5e625da3b5b4ffcc9b9093be8d6be7fc46111885936d6543890efb016aa303f + languageName: node + linkType: hard + +"@eslint/eslintrc@npm:^3.0.2, @eslint/eslintrc@npm:^3.1.0": + version: 3.1.0 + resolution: "@eslint/eslintrc@npm:3.1.0" dependencies: ajv: "npm:^6.12.4" debug: "npm:^4.3.2" - espree: "npm:^9.6.0" - globals: "npm:^13.19.0" + espree: "npm:^10.0.1" + globals: "npm:^14.0.0" ignore: "npm:^5.2.0" import-fresh: "npm:^3.2.1" js-yaml: "npm:^4.1.0" minimatch: "npm:^3.1.2" strip-json-comments: "npm:^3.1.1" - checksum: 10/7a3b14f4b40fc1a22624c3f84d9f467a3d9ea1ca6e9a372116cb92507e485260359465b58e25bcb6c9981b155416b98c9973ad9b796053fd7b3f776a6946bce8 + checksum: 10/02bf892d1397e1029209dea685e9f4f87baf643315df2a632b5f121ec7e8548a3b34f428a007234fa82772218fa8a3ac2d10328637b9ce63b7f8344035b74db3 languageName: node linkType: hard -"@eslint/js@npm:8.57.0": - version: 8.57.0 - resolution: "@eslint/js@npm:8.57.0" - checksum: 10/3c501ce8a997cf6cbbaf4ed358af5492875e3550c19b9621413b82caa9ae5382c584b0efa79835639e6e0ddaa568caf3499318e5bdab68643ef4199dce5eb0a0 +"@eslint/js@npm:9.6.0": + version: 9.6.0 + resolution: "@eslint/js@npm:9.6.0" + checksum: 10/b2ba6cab129630664af9539cb80116207f472a31830dd129b9e0bded2b3212a9eb5f664b9cddccc34a32c252add1f01c0cd6b91973b8ec2a274d643db356d82f + languageName: node + linkType: hard + +"@eslint/object-schema@npm:^2.1.4": + version: 2.1.4 + resolution: "@eslint/object-schema@npm:2.1.4" + checksum: 10/221e8d9f281c605948cd6e030874aacce83fe097f8f9c1964787037bccf08e82b7aa9eff1850a30fffac43f1d76555727ec22a2af479d91e268e89d1e035131e languageName: node linkType: hard @@ -641,17 +666,6 @@ __metadata: languageName: node linkType: hard -"@humanwhocodes/config-array@npm:^0.11.14": - version: 0.11.14 - resolution: "@humanwhocodes/config-array@npm:0.11.14" - dependencies: - "@humanwhocodes/object-schema": "npm:^2.0.2" - debug: "npm:^4.3.1" - minimatch: "npm:^3.0.5" - checksum: 10/3ffb24ecdfab64014a230e127118d50a1a04d11080cbb748bc21629393d100850496456bbcb4e8c438957fe0934430d731042f1264d6a167b62d32fc2863580a - languageName: node - linkType: hard - "@humanwhocodes/module-importer@npm:^1.0.1": version: 1.0.1 resolution: "@humanwhocodes/module-importer@npm:1.0.1" @@ -659,10 +673,10 @@ __metadata: languageName: node linkType: hard -"@humanwhocodes/object-schema@npm:^2.0.2": - version: 2.0.2 - resolution: "@humanwhocodes/object-schema@npm:2.0.2" - checksum: 10/ef915e3e2f34652f3d383b28a9a99cfea476fa991482370889ab14aac8ecd2b38d47cc21932526c6d949da0daf4a4a6bf629d30f41b0caca25e146819cbfa70e +"@humanwhocodes/retry@npm:^0.3.0": + version: 0.3.0 + resolution: "@humanwhocodes/retry@npm:0.3.0" + checksum: 10/e574bab58680867414e225c9002e9a97eb396f85871c180fbb1a9bcdf9ded4b4de0b327f7d0c43b775873362b7c92956d4b322e8bc4b90be56077524341f04b2 languageName: node linkType: hard @@ -1245,14 +1259,14 @@ __metadata: languageName: node linkType: hard -"@rollup/plugin-commonjs@npm:^25.0.7": - version: 25.0.7 - resolution: "@rollup/plugin-commonjs@npm:25.0.7" +"@rollup/plugin-commonjs@npm:^26.0.1": + version: 26.0.1 + resolution: "@rollup/plugin-commonjs@npm:26.0.1" dependencies: "@rollup/pluginutils": "npm:^5.0.1" commondir: "npm:^1.0.1" estree-walker: "npm:^2.0.2" - glob: "npm:^8.0.3" + glob: "npm:^10.4.1" is-reference: "npm:1.2.1" magic-string: "npm:^0.30.3" peerDependencies: @@ -1260,7 +1274,7 @@ __metadata: peerDependenciesMeta: rollup: optional: true - checksum: 10/89b108e245d1af6e7878ac949bfcd44e48f7d0c1eda0cb0b7e89c231ae73de455ffe2ac65eb03a398da4e8c300ce404f997fe66f8dde3d4d4794ffd2c1241fc3 + checksum: 10/d9846fbf9c279259b5bf508da6264e18b2572e8bbd6df2c4fd96f1ae40153b231b7864426e62bff6f2f53b5a73b6db2246cacc31d4eecdaf469cc16d683c2392 languageName: node linkType: hard @@ -1313,93 +1327,114 @@ __metadata: languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.12.1": - version: 4.12.1 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.12.1" +"@rollup/rollup-android-arm-eabi@npm:4.18.1": + version: 4.18.1 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.18.1" conditions: os=android & cpu=arm languageName: node linkType: hard -"@rollup/rollup-android-arm64@npm:4.12.1": - version: 4.12.1 - resolution: "@rollup/rollup-android-arm64@npm:4.12.1" +"@rollup/rollup-android-arm64@npm:4.18.1": + version: 4.18.1 + resolution: "@rollup/rollup-android-arm64@npm:4.18.1" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-arm64@npm:4.12.1": - version: 4.12.1 - resolution: "@rollup/rollup-darwin-arm64@npm:4.12.1" +"@rollup/rollup-darwin-arm64@npm:4.18.1": + version: 4.18.1 + resolution: "@rollup/rollup-darwin-arm64@npm:4.18.1" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-darwin-x64@npm:4.12.1": - version: 4.12.1 - resolution: "@rollup/rollup-darwin-x64@npm:4.12.1" +"@rollup/rollup-darwin-x64@npm:4.18.1": + version: 4.18.1 + resolution: "@rollup/rollup-darwin-x64@npm:4.18.1" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@rollup/rollup-linux-arm-gnueabihf@npm:4.12.1": - version: 4.12.1 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.12.1" - conditions: os=linux & cpu=arm +"@rollup/rollup-linux-arm-gnueabihf@npm:4.18.1": + version: 4.18.1 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.18.1" + conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm64-gnu@npm:4.12.1": - version: 4.12.1 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.12.1" +"@rollup/rollup-linux-arm-musleabihf@npm:4.18.1": + version: 4.18.1 + resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.18.1" + conditions: os=linux & cpu=arm & libc=musl + languageName: node + linkType: hard + +"@rollup/rollup-linux-arm64-gnu@npm:4.18.1": + version: 4.18.1 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.18.1" conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-arm64-musl@npm:4.12.1": - version: 4.12.1 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.12.1" +"@rollup/rollup-linux-arm64-musl@npm:4.18.1": + version: 4.18.1 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.18.1" conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-gnu@npm:4.12.1": - version: 4.12.1 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.12.1" +"@rollup/rollup-linux-powerpc64le-gnu@npm:4.18.1": + version: 4.18.1 + resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.18.1" + conditions: os=linux & cpu=ppc64 & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-riscv64-gnu@npm:4.18.1": + version: 4.18.1 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.18.1" conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-gnu@npm:4.12.1": - version: 4.12.1 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.12.1" +"@rollup/rollup-linux-s390x-gnu@npm:4.18.1": + version: 4.18.1 + resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.18.1" + conditions: os=linux & cpu=s390x & libc=glibc + languageName: node + linkType: hard + +"@rollup/rollup-linux-x64-gnu@npm:4.18.1": + version: 4.18.1 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.18.1" conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@rollup/rollup-linux-x64-musl@npm:4.12.1": - version: 4.12.1 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.12.1" +"@rollup/rollup-linux-x64-musl@npm:4.18.1": + version: 4.18.1 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.18.1" conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@rollup/rollup-win32-arm64-msvc@npm:4.12.1": - version: 4.12.1 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.12.1" +"@rollup/rollup-win32-arm64-msvc@npm:4.18.1": + version: 4.18.1 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.18.1" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@rollup/rollup-win32-ia32-msvc@npm:4.12.1": - version: 4.12.1 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.12.1" +"@rollup/rollup-win32-ia32-msvc@npm:4.18.1": + version: 4.18.1 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.18.1" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@rollup/rollup-win32-x64-msvc@npm:4.12.1": - version: 4.12.1 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.12.1" +"@rollup/rollup-win32-x64-msvc@npm:4.18.1": + version: 4.18.1 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.18.1" conditions: os=win32 & cpu=x64 languageName: node linkType: hard @@ -1638,12 +1673,12 @@ __metadata: languageName: node linkType: hard -"@types/hast@npm:^2.0.0": - version: 2.3.8 - resolution: "@types/hast@npm:2.3.8" +"@types/hast@npm:^3.0.0": + version: 3.0.4 + resolution: "@types/hast@npm:3.0.4" dependencies: - "@types/unist": "npm:^2" - checksum: 10/4c3b3efb7067d32a568a9bf5d2a7599f99ec08c2eaade3aaeb579b7a31bcdf8f6475f56c1ac5bc3f4e4e07b84a93a9b1cf1ef9a8b52b39e3deabea7989e5dd4b + "@types/unist": "npm:*" + checksum: 10/732920d81bb7605895776841b7658b4d8cc74a43a8fa176017cc0fb0ecc1a4c82a2b75a4fe6b71aa262b649d3fb62858c6789efa3793ea1d40269953af96ecb5 languageName: node linkType: hard @@ -1689,13 +1724,6 @@ __metadata: languageName: node linkType: hard -"@types/json-schema@npm:^7.0.12": - version: 7.0.15 - resolution: "@types/json-schema@npm:7.0.15" - checksum: 10/1a3c3e06236e4c4aab89499c428d585527ce50c24fe8259e8b3926d3df4cfbbbcf306cfc73ddfb66cbafc973116efd15967020b0f738f63e09e64c7d260519e7 - languageName: node - linkType: hard - "@types/json5@npm:^0.0.29": version: 0.0.29 resolution: "@types/json5@npm:0.0.29" @@ -1712,12 +1740,12 @@ __metadata: languageName: node linkType: hard -"@types/mdast@npm:^3.0.0": - version: 3.0.15 - resolution: "@types/mdast@npm:3.0.15" +"@types/mdast@npm:^4.0.0": + version: 4.0.4 + resolution: "@types/mdast@npm:4.0.4" dependencies: - "@types/unist": "npm:^2" - checksum: 10/050a5c1383928b2688dd145382a22535e2af87dc3fd592c843abb7851bcc99893a1ee0f63be19fc4e89779387ec26a57486cfb425b016c0b2a98a17fc4a1e8b3 + "@types/unist": "npm:*" + checksum: 10/efe3ec11b9ee0015a396c4fb4cd1b6f31b51b8ae9783c59560e6fc0bf6c2fa1dcc7fccaf45fa09a6c8b3397fab9dc8d431433935cae3835caa70a18f7fc775f8 languageName: node linkType: hard @@ -1742,10 +1770,10 @@ __metadata: languageName: node linkType: hard -"@types/mocha@npm:^10.0.6": - version: 10.0.6 - resolution: "@types/mocha@npm:10.0.6" - checksum: 10/fc73626e81e89c32d06b7ff9b72c4177b46d579cdd932f796614adc026852d84cb849d743473ba572cb4d9ea6d8c04e3749552d326c26495ec1c4b46e6e0a0c0 +"@types/mocha@npm:^10.0.7": + version: 10.0.7 + resolution: "@types/mocha@npm:10.0.7" + checksum: 10/4494871e8a867633d818b00d6f29d47379f9e23655b89ca728166ff2f0a406b97d376fcc3e7a570a3840f72abb03c886c5e66f50ae0f018376e4dc10ed179564 languageName: node linkType: hard @@ -1756,12 +1784,12 @@ __metadata: languageName: node linkType: hard -"@types/node@npm:*, @types/node@npm:^20.11.25": - version: 20.11.25 - resolution: "@types/node@npm:20.11.25" +"@types/node@npm:*, @types/node@npm:^20.14.9": + version: 20.14.10 + resolution: "@types/node@npm:20.14.10" dependencies: undici-types: "npm:~5.26.4" - checksum: 10/861265f1bbb151404bd8842b595f027a4ff067c61ecff9a37b9f7f53922c18dd532c8e795e8e7675dd8dba056645623fd2b9848d5ef72863ec3609096cd2923e + checksum: 10/672892cf94d0d95cf052f11271990686a0fd204cd1e5fe7a4ef240e5315e06711765dc47b9ec98627d3adac18b8c92bb7e2d8db21d18faa20bc3e3203a143e79 languageName: node linkType: hard @@ -1786,10 +1814,10 @@ __metadata: languageName: node linkType: hard -"@types/semver@npm:^7.5.0": - version: 7.5.5 - resolution: "@types/semver@npm:7.5.5" - checksum: 10/1b0be2c4d830f5ef002a305308e06e3616fc38a41c9a2c5b4267df82a038d9bd0ba32ec1da82a52db84a720be7e4b69bac7593797d8dc1400a69069af8f19219 +"@types/semver-utils@npm:^1.1.1": + version: 1.1.3 + resolution: "@types/semver-utils@npm:1.1.3" + checksum: 10/37f3bacf1426569624c645bf9e6cf009735760b56dad08fcf701740ea2b4c3cf89fc3eecfbf1c3a2932f81d3b55c42647694bf732c5aeeace0592ccfd9905d50 languageName: node linkType: hard @@ -1800,7 +1828,14 @@ __metadata: languageName: node linkType: hard -"@types/unist@npm:^2, @types/unist@npm:^2.0.0, @types/unist@npm:^2.0.2": +"@types/unist@npm:*, @types/unist@npm:^3.0.0": + version: 3.0.2 + resolution: "@types/unist@npm:3.0.2" + checksum: 10/3d04d0be69316e5f14599a0d993a208606c12818cf631fd399243d1dc7a9bd8a3917d6066baa6abc290814afbd744621484756803c80cba892c39cd4b4a85616 + languageName: node + linkType: hard + +"@types/unist@npm:^2.0.0, @types/unist@npm:^2.0.2": version: 2.0.10 resolution: "@types/unist@npm:2.0.10" checksum: 10/e2924e18dedf45f68a5c6ccd6015cd62f1643b1b43baac1854efa21ae9e70505db94290434a23da1137d9e31eb58e54ca175982005698ac37300a1c889f6c4aa @@ -1823,195 +1858,121 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^7.1.1": - version: 7.1.1 - resolution: "@typescript-eslint/eslint-plugin@npm:7.1.1" +"@typescript-eslint/eslint-plugin@npm:^7.14.1": + version: 7.16.0 + resolution: "@typescript-eslint/eslint-plugin@npm:7.16.0" dependencies: - "@eslint-community/regexpp": "npm:^4.5.1" - "@typescript-eslint/scope-manager": "npm:7.1.1" - "@typescript-eslint/type-utils": "npm:7.1.1" - "@typescript-eslint/utils": "npm:7.1.1" - "@typescript-eslint/visitor-keys": "npm:7.1.1" - debug: "npm:^4.3.4" + "@eslint-community/regexpp": "npm:^4.10.0" + "@typescript-eslint/scope-manager": "npm:7.16.0" + "@typescript-eslint/type-utils": "npm:7.16.0" + "@typescript-eslint/utils": "npm:7.16.0" + "@typescript-eslint/visitor-keys": "npm:7.16.0" graphemer: "npm:^1.4.0" - ignore: "npm:^5.2.4" + ignore: "npm:^5.3.1" natural-compare: "npm:^1.4.0" - semver: "npm:^7.5.4" - ts-api-utils: "npm:^1.0.1" + ts-api-utils: "npm:^1.3.0" peerDependencies: "@typescript-eslint/parser": ^7.0.0 eslint: ^8.56.0 peerDependenciesMeta: typescript: optional: true - checksum: 10/5b357566a6dd7996ef2fdd13e5f747d55213f6217642c4a53618f432cf211be07ec62e23668132d997e1dcd1b1f56b36406989856ef7da373ea0f94b7c422f23 + checksum: 10/beda6b586bfc953843877395b09acc0525d727dcb77e6ded5fbc645a9008b7e60360ddbaf6a9b7deaf23cd42c206412b7150d8df27f1fe2da3dc24dfab1c8d71 languageName: node linkType: hard -"@typescript-eslint/parser@npm:^7.1.1": - version: 7.1.1 - resolution: "@typescript-eslint/parser@npm:7.1.1" +"@typescript-eslint/parser@npm:^7.14.1": + version: 7.16.0 + resolution: "@typescript-eslint/parser@npm:7.16.0" dependencies: - "@typescript-eslint/scope-manager": "npm:7.1.1" - "@typescript-eslint/types": "npm:7.1.1" - "@typescript-eslint/typescript-estree": "npm:7.1.1" - "@typescript-eslint/visitor-keys": "npm:7.1.1" + "@typescript-eslint/scope-manager": "npm:7.16.0" + "@typescript-eslint/types": "npm:7.16.0" + "@typescript-eslint/typescript-estree": "npm:7.16.0" + "@typescript-eslint/visitor-keys": "npm:7.16.0" debug: "npm:^4.3.4" peerDependencies: eslint: ^8.56.0 peerDependenciesMeta: typescript: optional: true - checksum: 10/6df5fb8f34f887ddb086d2a02b74b422f6468daed3eded9a840b0c77b2d96ef818c8739f151bc1ba904be2973cbd82f48a07ef08101dcfec4cdfc71ef00c0a04 - languageName: node - linkType: hard - -"@typescript-eslint/scope-manager@npm:6.15.0": - version: 6.15.0 - resolution: "@typescript-eslint/scope-manager@npm:6.15.0" - dependencies: - "@typescript-eslint/types": "npm:6.15.0" - "@typescript-eslint/visitor-keys": "npm:6.15.0" - checksum: 10/168d783c06a99784362e2eaaa56396b31716ee785779707ef984c2abb3e822c56440473efc6580cb8b84b2da508731ad184a00b3618bc7f3f93d8243804f2fcf + checksum: 10/dc374e6c9e7dfcdd968828bb32ef59d3ebabd0a18671dee22d14dda2c713dade6eb493fd11b127df17035c7451898b42f4a88102da9a4bf3ca6a3baed8c20309 languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:7.1.1": - version: 7.1.1 - resolution: "@typescript-eslint/scope-manager@npm:7.1.1" +"@typescript-eslint/scope-manager@npm:7.16.0": + version: 7.16.0 + resolution: "@typescript-eslint/scope-manager@npm:7.16.0" dependencies: - "@typescript-eslint/types": "npm:7.1.1" - "@typescript-eslint/visitor-keys": "npm:7.1.1" - checksum: 10/74a1de52eebf8f6c050bd071ba580f00dbd104bd0a9a2bfc7a794fcf5019be4b208ab63c318695bb4347669b55abd03016fa46a775d97c9e25f43cb46e5889e0 + "@typescript-eslint/types": "npm:7.16.0" + "@typescript-eslint/visitor-keys": "npm:7.16.0" + checksum: 10/bf39a3ab803503c33e6c33568e7b93793d53d18100cb2f2ec1a540121aeba74d291d19c9ad3933198ff15e53a46d2f92db0c54309259dc99c1e3e297becd5677 languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:7.1.1": - version: 7.1.1 - resolution: "@typescript-eslint/type-utils@npm:7.1.1" +"@typescript-eslint/type-utils@npm:7.16.0": + version: 7.16.0 + resolution: "@typescript-eslint/type-utils@npm:7.16.0" dependencies: - "@typescript-eslint/typescript-estree": "npm:7.1.1" - "@typescript-eslint/utils": "npm:7.1.1" + "@typescript-eslint/typescript-estree": "npm:7.16.0" + "@typescript-eslint/utils": "npm:7.16.0" debug: "npm:^4.3.4" - ts-api-utils: "npm:^1.0.1" + ts-api-utils: "npm:^1.3.0" peerDependencies: eslint: ^8.56.0 peerDependenciesMeta: typescript: optional: true - checksum: 10/779a4700d1277180759d4df03af56395cfc4ba039d8bfd9245cf1084448d17c9ab899ebfff719f77713c44736f7adce7a97bd9fffb79bb21a3742ae9bdfcb5ef - languageName: node - linkType: hard - -"@typescript-eslint/types@npm:6.15.0": - version: 6.15.0 - resolution: "@typescript-eslint/types@npm:6.15.0" - checksum: 10/d55de64d532c9016c922cc36b86ab661d7d64d942057486a0bca7a7db07fade95c3de59bfe364bc76ab538fb979ca2e4e6744c3acf8919a2d61e73cc7f544363 - languageName: node - linkType: hard - -"@typescript-eslint/types@npm:7.1.1": - version: 7.1.1 - resolution: "@typescript-eslint/types@npm:7.1.1" - checksum: 10/e0fab31cb850a4923e0fca0663497b442a63fecfd1a293f70ecb4145b9f7cfbebb4d0ba29be76d70b95c153e51fc66e0400cd565d7552766783338878955680a + checksum: 10/84925c851a515768317573984dc855ac93bf787ebaa6382379dea6b356adb936ebd38bf7ab2f95124c68de7ab1fd5c849fe6717929343a80b839757fb5bf3af0 languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:6.15.0": - version: 6.15.0 - resolution: "@typescript-eslint/typescript-estree@npm:6.15.0" - dependencies: - "@typescript-eslint/types": "npm:6.15.0" - "@typescript-eslint/visitor-keys": "npm:6.15.0" - debug: "npm:^4.3.4" - globby: "npm:^11.1.0" - is-glob: "npm:^4.0.3" - semver: "npm:^7.5.4" - ts-api-utils: "npm:^1.0.1" - peerDependenciesMeta: - typescript: - optional: true - checksum: 10/920f7f3bfe463a9da943e1a686b7f13ac802a5e33be52f39ac711aa53a1e274dbe173b41bba05581c560fabfc3e1fadcfd81ab53a036afe25fb1a76651fcad7a +"@typescript-eslint/types@npm:7.16.0": + version: 7.16.0 + resolution: "@typescript-eslint/types@npm:7.16.0" + checksum: 10/0813d9eb158f984b9d7e9e83961533ddc1e8c8815ca9059dab820df276b1e537b183f4c83cc4fe79ab3865cde1a64f2ec3f7fffe7209872d7d404636299f630b languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:7.1.1": - version: 7.1.1 - resolution: "@typescript-eslint/typescript-estree@npm:7.1.1" +"@typescript-eslint/typescript-estree@npm:7.16.0": + version: 7.16.0 + resolution: "@typescript-eslint/typescript-estree@npm:7.16.0" dependencies: - "@typescript-eslint/types": "npm:7.1.1" - "@typescript-eslint/visitor-keys": "npm:7.1.1" + "@typescript-eslint/types": "npm:7.16.0" + "@typescript-eslint/visitor-keys": "npm:7.16.0" debug: "npm:^4.3.4" globby: "npm:^11.1.0" is-glob: "npm:^4.0.3" - minimatch: "npm:9.0.3" - semver: "npm:^7.5.4" - ts-api-utils: "npm:^1.0.1" + minimatch: "npm:^9.0.4" + semver: "npm:^7.6.0" + ts-api-utils: "npm:^1.3.0" peerDependenciesMeta: typescript: optional: true - checksum: 10/6840f31ffe44072f0e20eb4acc091161eeac265fed44937d33064880269650ea63d68e8d79759f2dfaeff9a5803dcdf30e15a8b27e7db6cffbed42a02f9851e5 + checksum: 10/5719c0cb649d627a073f1c8994a6073acc211ecfce0daef61d2de4315e42a23cf79e4dacb3b3596c4792eab062fdd22080c62345e2a58d38e7268eb6103a46d4 languageName: node linkType: hard -"@typescript-eslint/utils@npm:7.1.1": - version: 7.1.1 - resolution: "@typescript-eslint/utils@npm:7.1.1" +"@typescript-eslint/utils@npm:7.16.0, @typescript-eslint/utils@npm:^7.0.0": + version: 7.16.0 + resolution: "@typescript-eslint/utils@npm:7.16.0" dependencies: "@eslint-community/eslint-utils": "npm:^4.4.0" - "@types/json-schema": "npm:^7.0.12" - "@types/semver": "npm:^7.5.0" - "@typescript-eslint/scope-manager": "npm:7.1.1" - "@typescript-eslint/types": "npm:7.1.1" - "@typescript-eslint/typescript-estree": "npm:7.1.1" - semver: "npm:^7.5.4" + "@typescript-eslint/scope-manager": "npm:7.16.0" + "@typescript-eslint/types": "npm:7.16.0" + "@typescript-eslint/typescript-estree": "npm:7.16.0" peerDependencies: eslint: ^8.56.0 - checksum: 10/da8daae269ce15360ed91508f7c430b37d2e877321a91f437f611f9b643cc563c4aefe3d6b3983fadbb1bed389c82a4ceac95bbfeb015b62830fdb9ceea40e5a - languageName: node - linkType: hard - -"@typescript-eslint/utils@npm:^6.0.0": - version: 6.15.0 - resolution: "@typescript-eslint/utils@npm:6.15.0" - dependencies: - "@eslint-community/eslint-utils": "npm:^4.4.0" - "@types/json-schema": "npm:^7.0.12" - "@types/semver": "npm:^7.5.0" - "@typescript-eslint/scope-manager": "npm:6.15.0" - "@typescript-eslint/types": "npm:6.15.0" - "@typescript-eslint/typescript-estree": "npm:6.15.0" - semver: "npm:^7.5.4" - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - checksum: 10/7895240933ad28295508f8c4286a8b905550a35eda83a11ecf9511e53078e0af07e75a1872f1bc757f165b41fdc84616ea97c1e2e3bf80cff985935f25596228 - languageName: node - linkType: hard - -"@typescript-eslint/visitor-keys@npm:6.15.0": - version: 6.15.0 - resolution: "@typescript-eslint/visitor-keys@npm:6.15.0" - dependencies: - "@typescript-eslint/types": "npm:6.15.0" - eslint-visitor-keys: "npm:^3.4.1" - checksum: 10/4641a829485f67a5d9d3558aa0d152e5ab57b468cfd9653168ce9a141e1f051730669a024505183b64f7a7e5d8f62533af4ebd4ad7366b551390461e9c45ec18 + checksum: 10/325eab6705e70322d8df613cba4b018abc5d8ef857eb6c86f7a8376334eac789e6a585d30c041045c7eeede18083744faae66f48033e7811b2a23ebe8f6d3407 languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:7.1.1": - version: 7.1.1 - resolution: "@typescript-eslint/visitor-keys@npm:7.1.1" +"@typescript-eslint/visitor-keys@npm:7.16.0": + version: 7.16.0 + resolution: "@typescript-eslint/visitor-keys@npm:7.16.0" dependencies: - "@typescript-eslint/types": "npm:7.1.1" - eslint-visitor-keys: "npm:^3.4.1" - checksum: 10/d0c6c0811f38186053679b8447469e9a5c040db639d59e710ce5c5f5fddf9554287eb01a7cfa7a31e06f274bbe261c3b89a51a8c42869b1157b2d90c08f79507 - languageName: node - linkType: hard - -"@ungap/structured-clone@npm:^1.2.0": - version: 1.2.0 - resolution: "@ungap/structured-clone@npm:1.2.0" - checksum: 10/c6fe89a505e513a7592e1438280db1c075764793a2397877ff1351721fe8792a966a5359769e30242b3cd023f2efb9e63ca2ca88019d73b564488cc20e3eab12 + "@typescript-eslint/types": "npm:7.16.0" + eslint-visitor-keys: "npm:^3.4.3" + checksum: 10/aae065bdd6d5681d40df51af24933fc86c15f355f9d8f85c39a506f352ddc2a76fc72d4f8cf823ebb7550c84d543605a2fdd7d06979a0967cd48c1f542436714 languageName: node linkType: hard @@ -2085,109 +2046,113 @@ __metadata: languageName: node linkType: hard -"@xylabs/assert@npm:^3.0.11, @xylabs/assert@npm:~3.0.11": - version: 3.0.11 - resolution: "@xylabs/assert@npm:3.0.11" - checksum: 10/c24181926fcc7a784f870322ab78eaeda46f59de0f69685e535b6a067df48668260599bdca54a302c3c37f67383665b7ed8345553ce0ee70ea514dd1b29b962f +"@xylabs/assert@npm:^3.5.5": + version: 3.5.5 + resolution: "@xylabs/assert@npm:3.5.5" + checksum: 10/095eb60c29cfe2a5a2daba0b0b7c9a847c1ac502b475b7c1dde36fdacf8c28c24fb102094d3b09f585dbd01152c341a5bd4deb2f8bcdb0b4e5323c81b5f9d1d8 languageName: node linkType: hard -"@xylabs/eslint-config@npm:^3.5.2": - version: 3.5.2 - resolution: "@xylabs/eslint-config@npm:3.5.2" +"@xylabs/eslint-config@npm:^3.11.12": + version: 3.11.12 + resolution: "@xylabs/eslint-config@npm:3.11.12" dependencies: - "@typescript-eslint/eslint-plugin": "npm:^7.1.1" - "@typescript-eslint/parser": "npm:^7.1.1" + "@typescript-eslint/eslint-plugin": "npm:^7.14.1" + "@typescript-eslint/parser": "npm:^7.14.1" eslint-config-prettier: "npm:^9.1.0" eslint-import-resolver-typescript: "npm:^3.6.1" - eslint-plugin-deprecation: "npm:^2.0.0" + eslint-plugin-deprecation: "npm:^3.0.0" eslint-plugin-import: "npm:^2.29.1" - eslint-plugin-json-es: "npm:^1.5.7" - eslint-plugin-jsonc: "npm:^2.13.0" + eslint-plugin-json-es: "npm:^1.6.0" + eslint-plugin-jsonc: "npm:^2.16.0" eslint-plugin-md: "npm:^1.0.19" - eslint-plugin-no-secrets: "npm:^0.8.9" + eslint-plugin-no-secrets: "npm:^1.0.2" eslint-plugin-prettier: "npm:^5.1.3" - eslint-plugin-simple-import-sort: "npm:^12.0.0" + eslint-plugin-simple-import-sort: "npm:^12.1.0" eslint-plugin-sort-keys-fix: "npm:^1.1.2" - eslint-plugin-unicorn: "npm:^51.0.1" - eslint-plugin-workspaces: "npm:^0.10.0" + eslint-plugin-unicorn: "npm:^54.0.0" + eslint-plugin-workspaces: "npm:^0.10.1" jsonc-eslint-parser: "npm:^2.4.0" lodash: "npm:^4.17.21" markdown-eslint-parser: "npm:^1.2.1" - prettier: "npm:^3.2.5" - remark-lint-maximum-line-length: "npm:^3.1.3" - remark-preset-lint-markdown-style-guide: "npm:^5.1.3" - typescript: "npm:^5.4.2" + prettier: "npm:^3.3.2" + remark-lint-maximum-line-length: "npm:^4.0.1" + remark-preset-lint-markdown-style-guide: "npm:^6.0.0" + typescript: "npm:^5.5.2" peerDependencies: - eslint: ^8.23.0 - checksum: 10/9808b4f37a811dcfefdc1a4df44712024173ff2d7c3f32d838108b9f8d085c59efcf82a9e505dbec03b36c14b9e40befff8d3da2b489b427b2b3146220d8c972 + eslint: ^8 + checksum: 10/52e27e49c6ee8e8a44ce828b61099efa6ef76bb69a7d83a6733fe48a81fcc31d7c8493c8bf4fb6ce49179ab9c612fc7b442a011d42ee763e288bca151df2d14b languageName: node linkType: hard -"@xylabs/eth-address@npm:^3.0.11": - version: 3.0.11 - resolution: "@xylabs/eth-address@npm:3.0.11" +"@xylabs/eth-address@npm:^3.5.5": + version: 3.5.5 + resolution: "@xylabs/eth-address@npm:3.5.5" dependencies: - "@xylabs/assert": "npm:~3.0.11" - ethers: "npm:6.11.1" - checksum: 10/534313e99818eeee08356764a4bd7b73fea5c429e1687596f31c7c69dd35c305599d72267a216d37fe42e9f6381a15e68462567e157410ffdc9a44171a15884c + "@xylabs/assert": "npm:^3.5.5" + ethers: "npm:6.13.1" + checksum: 10/b1861f012b84370788e27d86be1d1ea98a4cf70040dc258058964d5cefe811a6bedcd158cdbf796a6e48c99ae9fe17fb660e24fed77151402972eda3a2b11d6e languageName: node linkType: hard -"@xylabs/ts-scripts-yarn3@npm:^3.5.2": - version: 3.5.2 - resolution: "@xylabs/ts-scripts-yarn3@npm:3.5.2" +"@xylabs/ts-scripts-yarn3@npm:^3.11.12": + version: 3.11.12 + resolution: "@xylabs/ts-scripts-yarn3@npm:3.11.12" dependencies: - "@rollup/plugin-commonjs": "npm:^25.0.7" + "@rollup/plugin-commonjs": "npm:^26.0.1" "@rollup/plugin-json": "npm:^6.1.0" "@rollup/plugin-typescript": "npm:^11.1.6" - "@types/node": "npm:^20.11.25" + "@types/node": "npm:^20.14.9" "@types/yargs": "npm:^17.0.32" - "@typescript-eslint/eslint-plugin": "npm:^7.1.1" - "@typescript-eslint/parser": "npm:^7.1.1" - "@xylabs/tsconfig": "npm:~3.5.2" - async-mutex: "npm:^0.4.1" + "@typescript-eslint/eslint-plugin": "npm:^7.14.1" + "@typescript-eslint/parser": "npm:^7.14.1" + "@xylabs/tsconfig": "npm:~3.11.12" + "@xylabs/tsconfig-dom": "npm:~3.11.12" + async-mutex: "npm:^0.5.0" chalk: "npm:^4.1.2" cosmiconfig: "npm:^9.0.0" cosmiconfig-typescript-loader: "npm:^5.0.0" cpy: "npm:^8.1.2" depcheck: "npm:^1.4.7" - eslint: "npm:^8.57.0" eslint-config-prettier: "npm:^9.1.0" eslint-plugin-prettier: "npm:^5.1.3" - eslint-plugin-sonarjs: "npm:^0.24.0" - glob: "npm:^10.3.10" + eslint-plugin-sonarjs: "npm:^1.0.3" + glob: "npm:^10.4.2" jest: "npm:^29.7.0" jest-extended: "npm:^4.0.2" - jest-mock-extended: "npm:^3.0.5" + jest-mock-extended: "npm:^3.0.7" jest-sorted: "npm:^1.0.15" jsonc-eslint-parser: "npm:^2.4.0" license-checker: "npm:^25.0.1" lodash: "npm:^4.17.21" node-cmd: "npm:^5.0.0" - npm-check-updates: "npm:^16.14.15" - npm-package-json-lint: "npm:^7.1.0" - npm-package-json-lint-config-default: "npm:^6.0.0" + npm-check-updates: "npm:^16.14.20" + npm-package-json-lint: "npm:^8.0.0" + npm-package-json-lint-config-default: "npm:^7.0.1" parse-git-config: "npm:^3.0.0" - prettier: "npm:^3.2.5" - publint: "npm:^0.2.7" - reflect-metadata: "npm:^0.2.1" + prettier: "npm:^3.3.2" + publint: "npm:^0.2.8" + reflect-metadata: "npm:^0.2.2" rimraf: "npm:^4.4.1" - rollup: "npm:^4.12.1" + rollup: "npm:^4.18.0" rollup-plugin-exclude-dependencies-from-bundle: "npm:^1.1.23" - rollup-plugin-node-externals: "npm:^7.0.1" - supertest: "npm:^6.3.4" - ts-jest: "npm:^29.1.2" + rollup-plugin-node-externals: "npm:^7.1.2" + supertest: "npm:^7.0.0" + ts-jest: "npm:^29.1.5" ts-node: "npm:^10.9.2" ts-prune: "npm:^0.10.3" tsc-prog: "npm:^2.3.0" - tslib: "npm:^2.6.2" - tsup: "npm:^8.0.2" - typedoc: "npm:^0.25.11" + tslib: "npm:^2.6.3" + tsup: "npm:^8.1.0" + typedoc: "npm:^0.25.13" types-package-json: "npm:^2.0.39" yargs: "npm:^17.7.2" peerDependencies: + eslint: ">=8" typescript: ^5 + peerDependenciesMeta: + eslint: + optional: true bin: build: dist/bin/build.js clean: dist/bin/clean.js @@ -2234,54 +2199,63 @@ __metadata: xy: dist/bin/xy.js xy-ts: src/bin/xy-ts.ts yarn3only: dist/bin/yarn3only.js - checksum: 10/1c2dddf7c2e3be7179cd9336e7869874187a18ad654233689a44783433dc071e66146a10d9705d53aedb48a0eec9e120d0897bcb6f7409f7d126d77d10f30122 + checksum: 10/acf20f9025104ea69b057b954475c8da3bbfa4f8f8bb72072be35fea170a238c70fe26715f3dafa3fde56c346689b5705cac1e7bcf3353b005fd3649fa24935f + languageName: node + linkType: hard + +"@xylabs/tsconfig-dom@npm:~3.11.12": + version: 3.11.12 + resolution: "@xylabs/tsconfig-dom@npm:3.11.12" + dependencies: + "@xylabs/tsconfig": "npm:~3.11.12" + checksum: 10/b5a76c9407eb22f3d29a4d25c06728ee69a082bb886cced27583b79bacdc7c9d846ccdacbd944eddfd03163db66d2dfb8b0d0aa57868175c21cc5a64f2ac571b languageName: node linkType: hard -"@xylabs/tsconfig-jest@npm:^3.5.2": - version: 3.5.2 - resolution: "@xylabs/tsconfig-jest@npm:3.5.2" +"@xylabs/tsconfig-jest@npm:^3.11.12": + version: 3.11.12 + resolution: "@xylabs/tsconfig-jest@npm:3.11.12" dependencies: - "@xylabs/tsconfig": "npm:~3.5.2" + "@xylabs/tsconfig": "npm:~3.11.12" jest-extended: "npm:^4.0.2" jest-sorted: "npm:^1.0.15" peerDependencies: typescript: ^5 - checksum: 10/eeb3e45449c85376cb7d28ff1057aeb81ea5897b07d565dfcfe6ebc4cea0ac945f3dc30855757e6d4054dc564586c3133c067105fdb3a15d9b1ce83c98d0dea2 + checksum: 10/e386ee21619193f4ac9ec61bf90303a6b8584a13eb8304bf9b2c0a6b8d2a9287ded2335c8cedd4a83061ed32341c449792141cc138d5ad0cbd714581e22dad06 languageName: node linkType: hard -"@xylabs/tsconfig@npm:^3.5.2, @xylabs/tsconfig@npm:~3.5.2": - version: 3.5.2 - resolution: "@xylabs/tsconfig@npm:3.5.2" - checksum: 10/caf3832510d334f2aff3a16de34481f105736aec10abe6c4940d534a15bc82145b9f0109739261d60494f9302151c362414db5ba31f7e99af5af0c1c01dd138b +"@xylabs/tsconfig@npm:^3.11.12, @xylabs/tsconfig@npm:~3.11.12": + version: 3.11.12 + resolution: "@xylabs/tsconfig@npm:3.11.12" + checksum: 10/9b866f628c057b1a97854810458bc0c9846ff58b9139432f9f68bbd8f81449114e05a77a0149dec461cc860d138ae8bc9205f91813584502305ea197d82607bd languageName: node linkType: hard -"@xyo-network/ethers-wrappers@workspace:packages/ethers-wrappers, @xyo-network/ethers-wrappers@workspace:~": +"@xyo-network/ethers-wrappers@workspace:^, @xyo-network/ethers-wrappers@workspace:packages/ethers-wrappers": version: 0.0.0-use.local resolution: "@xyo-network/ethers-wrappers@workspace:packages/ethers-wrappers" dependencies: - "@xylabs/assert": "npm:^3.0.11" - "@xylabs/eth-address": "npm:^3.0.11" - "@xylabs/ts-scripts-yarn3": "npm:^3.5.2" - "@xylabs/tsconfig": "npm:^3.5.2" + "@xylabs/assert": "npm:^3.5.5" + "@xylabs/eth-address": "npm:^3.5.5" + "@xylabs/ts-scripts-yarn3": "npm:^3.11.12" + "@xylabs/tsconfig": "npm:^3.11.12" "@xyo-network/typechain": "npm:^3.0.5" - ethers: "npm:^6.11.1" - typescript: "npm:^5.4.2" + ethers: "npm:^6.13.1" + typescript: "npm:^5.5.3" languageName: unknown linkType: soft -"@xyo-network/sdk-geo@workspace:packages/geo, @xyo-network/sdk-geo@workspace:~": +"@xyo-network/sdk-geo@workspace:^, @xyo-network/sdk-geo@workspace:packages/geo": version: 0.0.0-use.local resolution: "@xyo-network/sdk-geo@workspace:packages/geo" dependencies: "@types/mapbox-gl": "npm:^3.1.0" - "@xylabs/ts-scripts-yarn3": "npm:^3.5.2" - "@xylabs/tsconfig": "npm:^3.5.2" + "@xylabs/ts-scripts-yarn3": "npm:^3.11.12" + "@xylabs/tsconfig": "npm:^3.11.12" geojson: "npm:^0.5.0" - mapbox-gl: "npm:^3.2.0" - typescript: "npm:^5.4.2" + mapbox-gl: "npm:^3.5.1" + typescript: "npm:^5.5.3" languageName: unknown linkType: soft @@ -2289,11 +2263,11 @@ __metadata: version: 0.0.0-use.local resolution: "@xyo-network/sdk-meta@workspace:packages/meta" dependencies: - "@xylabs/ts-scripts-yarn3": "npm:^3.5.2" - "@xylabs/tsconfig": "npm:^3.5.2" + "@xylabs/ts-scripts-yarn3": "npm:^3.11.12" + "@xylabs/tsconfig": "npm:^3.11.12" cheerio: "npm:^1.0.0-rc.12" jest-serializer-html: "npm:^7.1.0" - typescript: "npm:^5.4.2" + typescript: "npm:^5.5.3" languageName: unknown linkType: soft @@ -2302,18 +2276,18 @@ __metadata: resolution: "@xyo-network/sdk-xyo-js@workspace:." dependencies: "@types/jest": "npm:^29.5.12" - "@types/mocha": "npm:^10.0.6" - "@xylabs/eslint-config": "npm:^3.5.2" - "@xylabs/ts-scripts-yarn3": "npm:^3.5.2" - "@xylabs/tsconfig": "npm:^3.5.2" - "@xylabs/tsconfig-jest": "npm:^3.5.2" - "@xyo-network/ethers-wrappers": "workspace:~" - "@xyo-network/sdk-geo": "workspace:~" + "@types/mocha": "npm:^10.0.7" + "@xylabs/eslint-config": "npm:^3.11.12" + "@xylabs/ts-scripts-yarn3": "npm:^3.11.12" + "@xylabs/tsconfig": "npm:^3.11.12" + "@xylabs/tsconfig-jest": "npm:^3.11.12" + "@xyo-network/ethers-wrappers": "workspace:^" + "@xyo-network/sdk-geo": "workspace:^" dotenv: "npm:^16.4.5" - eslint: "npm:^8.57.0" - eslint-plugin-unicorn: "npm:^51.0.1" + eslint: "npm:^9.6.0" + eslint-plugin-unicorn: "npm:^54.0.0" jest: "npm:^29.7.0" - typescript: "npm:^5.4.2" + typescript: "npm:^5.5.3" languageName: unknown linkType: soft @@ -2365,12 +2339,12 @@ __metadata: languageName: node linkType: hard -"acorn@npm:^8.10.0, acorn@npm:^8.4.1, acorn@npm:^8.5.0, acorn@npm:^8.9.0": - version: 8.11.2 - resolution: "acorn@npm:8.11.2" +"acorn@npm:^8.10.0, acorn@npm:^8.12.0, acorn@npm:^8.4.1, acorn@npm:^8.5.0, acorn@npm:^8.9.0": + version: 8.12.1 + resolution: "acorn@npm:8.12.1" bin: acorn: bin/acorn - checksum: 10/ff559b891382ad4cd34cc3c493511d0a7075a51f5f9f02a03440e92be3705679367238338566c5fbd3521ecadd565d29301bc8e16cb48379206bffbff3d72500 + checksum: 10/d08c2d122bba32d0861e0aa840b2ee25946c286d5dc5990abca991baf8cdbfbe199b05aacb221b979411a2fea36f83e26b5ac4f6b4e0ce49038c62316c1848f0 languageName: node linkType: hard @@ -2749,12 +2723,19 @@ __metadata: languageName: node linkType: hard -"async-mutex@npm:^0.4.1": - version: 0.4.1 - resolution: "async-mutex@npm:0.4.1" +"async-mutex@npm:^0.5.0": + version: 0.5.0 + resolution: "async-mutex@npm:0.5.0" dependencies: tslib: "npm:^2.4.0" - checksum: 10/7e9f77b112b8545beb6612493fae4a8d9d1d6c3f24fc22f4d6d05ce96d1e8d326ac3e743a804cc6d7bf24e7ef0267afb65bb127f99b2e433609684b38933ff1c + checksum: 10/4c6bfce1cc9cd43f723c4d96403ac5f4757f885c953b839cde6956ec8817ff39623b82d67614de10c7933e21626925882fb9bac367db7d15d7cb4f84228722c9 + languageName: node + linkType: hard + +"async@npm:^3.2.3": + version: 3.2.5 + resolution: "async@npm:3.2.5" + checksum: 10/323c3615c3f0ab1ac25a6f953296bc0ac3213d5e0f1c0debdb12964e55963af288d570293c11e44f7967af58c06d2a88d0ea588c86ec0fbf62fa98037f604a0f languageName: node linkType: hard @@ -2969,17 +2950,17 @@ __metadata: languageName: node linkType: hard -"browserslist@npm:^4.21.9, browserslist@npm:^4.22.3": - version: 4.23.0 - resolution: "browserslist@npm:4.23.0" +"browserslist@npm:^4.21.9, browserslist@npm:^4.23.0": + version: 4.23.2 + resolution: "browserslist@npm:4.23.2" dependencies: - caniuse-lite: "npm:^1.0.30001587" - electron-to-chromium: "npm:^1.4.668" + caniuse-lite: "npm:^1.0.30001640" + electron-to-chromium: "npm:^1.4.820" node-releases: "npm:^2.0.14" - update-browserslist-db: "npm:^1.0.13" + update-browserslist-db: "npm:^1.1.0" bin: browserslist: cli.js - checksum: 10/496c3862df74565dd942b4ae65f502c575cbeba1fa4a3894dad7aa3b16130dc3033bc502d8848147f7b625154a284708253d9598bcdbef5a1e34cf11dc7bad8e + checksum: 10/326a98b1c39bcc9a99b197f15790dc28e122b1aead3257c837421899377ac96239123f26868698085b3d9be916d72540602738e1f857e86a387e810af3fda6e5 languageName: node linkType: hard @@ -3015,15 +2996,6 @@ __metadata: languageName: node linkType: hard -"builtins@npm:^5.0.0": - version: 5.0.1 - resolution: "builtins@npm:5.0.1" - dependencies: - semver: "npm:^7.0.0" - checksum: 10/90136fa0ba98b7a3aea33190b1262a5297164731efb6a323b0231acf60cc2ea0b2b1075dbf107038266b8b77d6045fa9631d1c3f90efc1c594ba61218fbfbb4c - languageName: node - linkType: hard - "bundle-require@npm:^4.0.0": version: 4.0.2 resolution: "bundle-require@npm:4.0.2" @@ -3211,10 +3183,10 @@ __metadata: languageName: node linkType: hard -"caniuse-lite@npm:^1.0.30001587": - version: 1.0.30001597 - resolution: "caniuse-lite@npm:1.0.30001597" - checksum: 10/44a268113faeee51e249cbcb3924dc3765f26cd527a134e3bb720ed20d50abd8b9291500a88beee061cc03ae9f15ddc9045d57e30d25a98efeaff4f7bb8965c1 +"caniuse-lite@npm:^1.0.30001640": + version: 1.0.30001641 + resolution: "caniuse-lite@npm:1.0.30001641" + checksum: 10/d60df2662fcae31efc8f36451929640e9630bb2e936f7449166dc70dcc4a757f6d86a5a089eed763b58354d684404b175e6c8790a9fd95c48abed1fcb7c26225 languageName: node linkType: hard @@ -3225,6 +3197,13 @@ __metadata: languageName: node linkType: hard +"ccount@npm:^2.0.0": + version: 2.0.1 + resolution: "ccount@npm:2.0.1" + checksum: 10/48193dada54c9e260e0acf57fc16171a225305548f9ad20d5471e0f7a8c026aedd8747091dccb0d900cde7df4e4ddbd235df0d8de4a64c71b12f0d3303eeafd4 + languageName: node + linkType: hard + "chalk@npm:^2.1.0, chalk@npm:^2.4.1, chalk@npm:^2.4.2": version: 2.4.2 resolution: "chalk@npm:2.4.2" @@ -3236,7 +3215,7 @@ __metadata: languageName: node linkType: hard -"chalk@npm:^4.0.0, chalk@npm:^4.1.0, chalk@npm:^4.1.2": +"chalk@npm:^4.0.0, chalk@npm:^4.0.2, chalk@npm:^4.1.0, chalk@npm:^4.1.2": version: 4.1.2 resolution: "chalk@npm:4.1.2" dependencies: @@ -3267,6 +3246,13 @@ __metadata: languageName: node linkType: hard +"character-entities-html4@npm:^2.0.0": + version: 2.1.0 + resolution: "character-entities-html4@npm:2.1.0" + checksum: 10/7034aa7c7fa90309667f6dd50499c8a760c3d3a6fb159adb4e0bada0107d194551cdbad0714302f62d06ce4ed68565c8c2e15fdef2e8f8764eb63fa92b34b11d + languageName: node + linkType: hard + "character-entities-legacy@npm:^1.0.0": version: 1.1.4 resolution: "character-entities-legacy@npm:1.1.4" @@ -3274,6 +3260,13 @@ __metadata: languageName: node linkType: hard +"character-entities-legacy@npm:^3.0.0": + version: 3.0.0 + resolution: "character-entities-legacy@npm:3.0.0" + checksum: 10/7582af055cb488b626d364b7d7a4e46b06abd526fb63c0e4eb35bcb9c9799cc4f76b39f34fdccef2d1174ac95e53e9ab355aae83227c1a2505877893fce77731 + languageName: node + linkType: hard + "character-entities@npm:^1.0.0": version: 1.2.4 resolution: "character-entities@npm:1.2.4" @@ -3295,6 +3288,13 @@ __metadata: languageName: node linkType: hard +"character-reference-invalid@npm:^2.0.0": + version: 2.0.1 + resolution: "character-reference-invalid@npm:2.0.1" + checksum: 10/98d3b1a52ae510b7329e6ee7f6210df14f1e318c5415975d4c9e7ee0ef4c07875d47c6e74230c64551f12f556b4a8ccc24d9f3691a2aa197019e72a95e9297ee + languageName: node + linkType: hard + "chardet@npm:^0.7.0": version: 0.7.0 resolution: "chardet@npm:0.7.0" @@ -3499,6 +3499,13 @@ __metadata: languageName: node linkType: hard +"collapse-white-space@npm:^2.0.0": + version: 2.1.0 + resolution: "collapse-white-space@npm:2.1.0" + checksum: 10/c1424ae7c5ff370ec06bbff5990382c54ae6e14a021c7568151e4889e514667e110cc3a051fe5d8e17b117f76304fffcfe9f0360cda642cf0201a5ac398bf0e7 + languageName: node + linkType: hard + "collect-v8-coverage@npm:^1.0.0": version: 1.0.2 resolution: "collect-v8-coverage@npm:1.0.2" @@ -3659,12 +3666,12 @@ __metadata: languageName: node linkType: hard -"core-js-compat@npm:^3.34.0": - version: 3.36.0 - resolution: "core-js-compat@npm:3.36.0" +"core-js-compat@npm:^3.37.0": + version: 3.37.1 + resolution: "core-js-compat@npm:3.37.1" dependencies: - browserslist: "npm:^4.22.3" - checksum: 10/633c49a254fe48981057e33651e5a74a0a14f14731aa5afed5d2e61fbe3c5cbc116ffd4feaa158c683c40d6dc4fd2e6aa0ebe12c45d157cfa571309d08400c98 + browserslist: "npm:^4.23.0" + checksum: 10/30c6fdbd9ff179cc53951814689b8aabec106e5de6cddfa7a7feacc96b66d415b8eebcf5ec8f7c68ef35c552fe7d39edb8b15b1ce0f27379a272295b6e937061 languageName: node linkType: hard @@ -3694,7 +3701,7 @@ __metadata: languageName: node linkType: hard -"cosmiconfig@npm:^8.2.0": +"cosmiconfig@npm:^8.3.6": version: 8.3.6 resolution: "cosmiconfig@npm:8.3.6" dependencies: @@ -4085,6 +4092,15 @@ __metadata: languageName: node linkType: hard +"devlop@npm:^1.0.0, devlop@npm:^1.1.0": + version: 1.1.0 + resolution: "devlop@npm:1.1.0" + dependencies: + dequal: "npm:^2.0.0" + checksum: 10/3cc5f903d02d279d6dc4aa71ab6ed9898b9f4d1f861cc5421ce7357893c21b9520de78afb203c92bd650a6977ad0ca98195453a0707a39958cf5fea3b0a8ddd8 + languageName: node + linkType: hard + "dezalgo@npm:^1.0.0, dezalgo@npm:^1.0.4": version: 1.0.4 resolution: "dezalgo@npm:1.0.4" @@ -4109,13 +4125,6 @@ __metadata: languageName: node linkType: hard -"diff@npm:^5.0.0": - version: 5.1.0 - resolution: "diff@npm:5.1.0" - checksum: 10/f4557032a98b2967fe27b1a91dfcf8ebb6b9a24b1afe616b5c2312465100b861e9b8d4da374be535f2d6b967ce2f53826d7f6edc2a0d32b2ab55abc96acc2f9d - languageName: node - linkType: hard - "diffable-html@npm:^4.1.0": version: 4.1.0 resolution: "diffable-html@npm:4.1.0" @@ -4265,10 +4274,21 @@ __metadata: languageName: node linkType: hard -"electron-to-chromium@npm:^1.4.668": - version: 1.4.699 - resolution: "electron-to-chromium@npm:1.4.699" - checksum: 10/dd09cc21a204fee05349348f3399fc2a2a02b770fc43c746f3f117d870e8614495eb05647d01dfea92bb05bf2f0dd374ce19e6acd7623a1ad785951e193942d3 +"ejs@npm:^3.0.0": + version: 3.1.10 + resolution: "ejs@npm:3.1.10" + dependencies: + jake: "npm:^10.8.5" + bin: + ejs: bin/cli.js + checksum: 10/a9cb7d7cd13b7b1cd0be5c4788e44dd10d92f7285d2f65b942f33e127230c054f99a42db4d99f766d8dbc6c57e94799593ee66a14efd7c8dd70c4812bf6aa384 + languageName: node + linkType: hard + +"electron-to-chromium@npm:^1.4.820": + version: 1.4.823 + resolution: "electron-to-chromium@npm:1.4.823" + checksum: 10/af2ac5c0ccfaf697e4e95c4d85c06376bdab9b46d5e3a88ca1d0a515fd4945c7d63c211efb612fb8d5bbe828055481fba2f2e0a10e82bf5090dedadf52af87df languageName: node linkType: hard @@ -4441,33 +4461,36 @@ __metadata: languageName: node linkType: hard -"esbuild@npm:^0.19.2": - version: 0.19.6 - resolution: "esbuild@npm:0.19.6" - dependencies: - "@esbuild/android-arm": "npm:0.19.6" - "@esbuild/android-arm64": "npm:0.19.6" - "@esbuild/android-x64": "npm:0.19.6" - "@esbuild/darwin-arm64": "npm:0.19.6" - "@esbuild/darwin-x64": "npm:0.19.6" - "@esbuild/freebsd-arm64": "npm:0.19.6" - "@esbuild/freebsd-x64": "npm:0.19.6" - "@esbuild/linux-arm": "npm:0.19.6" - "@esbuild/linux-arm64": "npm:0.19.6" - "@esbuild/linux-ia32": "npm:0.19.6" - "@esbuild/linux-loong64": "npm:0.19.6" - "@esbuild/linux-mips64el": "npm:0.19.6" - "@esbuild/linux-ppc64": "npm:0.19.6" - "@esbuild/linux-riscv64": "npm:0.19.6" - "@esbuild/linux-s390x": "npm:0.19.6" - "@esbuild/linux-x64": "npm:0.19.6" - "@esbuild/netbsd-x64": "npm:0.19.6" - "@esbuild/openbsd-x64": "npm:0.19.6" - "@esbuild/sunos-x64": "npm:0.19.6" - "@esbuild/win32-arm64": "npm:0.19.6" - "@esbuild/win32-ia32": "npm:0.19.6" - "@esbuild/win32-x64": "npm:0.19.6" +"esbuild@npm:^0.21.4": + version: 0.21.5 + resolution: "esbuild@npm:0.21.5" + dependencies: + "@esbuild/aix-ppc64": "npm:0.21.5" + "@esbuild/android-arm": "npm:0.21.5" + "@esbuild/android-arm64": "npm:0.21.5" + "@esbuild/android-x64": "npm:0.21.5" + "@esbuild/darwin-arm64": "npm:0.21.5" + "@esbuild/darwin-x64": "npm:0.21.5" + "@esbuild/freebsd-arm64": "npm:0.21.5" + "@esbuild/freebsd-x64": "npm:0.21.5" + "@esbuild/linux-arm": "npm:0.21.5" + "@esbuild/linux-arm64": "npm:0.21.5" + "@esbuild/linux-ia32": "npm:0.21.5" + "@esbuild/linux-loong64": "npm:0.21.5" + "@esbuild/linux-mips64el": "npm:0.21.5" + "@esbuild/linux-ppc64": "npm:0.21.5" + "@esbuild/linux-riscv64": "npm:0.21.5" + "@esbuild/linux-s390x": "npm:0.21.5" + "@esbuild/linux-x64": "npm:0.21.5" + "@esbuild/netbsd-x64": "npm:0.21.5" + "@esbuild/openbsd-x64": "npm:0.21.5" + "@esbuild/sunos-x64": "npm:0.21.5" + "@esbuild/win32-arm64": "npm:0.21.5" + "@esbuild/win32-ia32": "npm:0.21.5" + "@esbuild/win32-x64": "npm:0.21.5" dependenciesMeta: + "@esbuild/aix-ppc64": + optional: true "@esbuild/android-arm": optional: true "@esbuild/android-arm64": @@ -4514,14 +4537,14 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 10/4f9436af2c2a8625cc2f8dbf34cc14c79617f6e42f107f2cc53e3503e8b43ac34afb8d7d9e02d7eb690835e8f93af42261c5437e4f54ab3737b1e5b9794ca104 + checksum: 10/d2ff2ca84d30cce8e871517374d6c2290835380dc7cd413b2d49189ed170d45e407be14de2cb4794cf76f75cf89955c4714726ebd3de7444b3046f5cab23ab6b languageName: node linkType: hard -"escalade@npm:^3.1.1": - version: 3.1.1 - resolution: "escalade@npm:3.1.1" - checksum: 10/afa618e73362576b63f6ca83c975456621095a1ed42ff068174e3f5cea48afc422814dda548c96e6ebb5333e7265140c7292abcc81bbd6ccb1757d50d3a4e182 +"escalade@npm:^3.1.1, escalade@npm:^3.1.2": + version: 3.1.2 + resolution: "escalade@npm:3.1.2" + checksum: 10/a1e07fea2f15663c30e40b9193d658397846ffe28ce0a3e4da0d8e485fedfeca228ab846aee101a05015829adf39f9934ff45b2a3fca47bed37a29646bd05cd3 languageName: node linkType: hard @@ -4553,14 +4576,14 @@ __metadata: languageName: node linkType: hard -"eslint-compat-utils@npm:^0.4.0": - version: 0.4.1 - resolution: "eslint-compat-utils@npm:0.4.1" +"eslint-compat-utils@npm:^0.5.0": + version: 0.5.1 + resolution: "eslint-compat-utils@npm:0.5.1" dependencies: semver: "npm:^7.5.4" peerDependencies: eslint: ">=6.0.0" - checksum: 10/62727af92603b000ecfc533cb5aaaf93ab82865fcbbcf46ee0ab3af77b3a0bb26458dd9eae862ca9c8d9d431531c45f572ec23b9f75753d34a8674b2d7c65791 + checksum: 10/ac65ac1c6107cf19f63f5fc17cea361c9cb1336be7356f23dbb0fac10979974b4622e13e950be43cbf431801f2c07f7dab448573181ccf6edc0b86d5b5304511 languageName: node linkType: hard @@ -4616,17 +4639,17 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-deprecation@npm:^2.0.0": - version: 2.0.0 - resolution: "eslint-plugin-deprecation@npm:2.0.0" +"eslint-plugin-deprecation@npm:^3.0.0": + version: 3.0.0 + resolution: "eslint-plugin-deprecation@npm:3.0.0" dependencies: - "@typescript-eslint/utils": "npm:^6.0.0" + "@typescript-eslint/utils": "npm:^7.0.0" + ts-api-utils: "npm:^1.3.0" tslib: "npm:^2.3.1" - tsutils: "npm:^3.21.0" peerDependencies: - eslint: ^7.0.0 || ^8.0.0 + eslint: ^8.0.0 typescript: ^4.2.4 || ^5.0.0 - checksum: 10/810276afa258155a35c863bb2138ebd2132447c3ed219e360915b0e7b4c6e77e09ae2931583d200b1f23e19040a27ad81c0927538a46392334bb4c3c4a2038b4 + checksum: 10/6b13f68be641b750b1e777d4818b554efe77df9900deb3f90580455991f32bad173245f11d628690096c99a01fb71e323c694bb2093329dc16da3417d3d90627 languageName: node linkType: hard @@ -4657,24 +4680,24 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-json-es@npm:^1.5.7": - version: 1.5.7 - resolution: "eslint-plugin-json-es@npm:1.5.7" +"eslint-plugin-json-es@npm:^1.6.0": + version: 1.6.0 + resolution: "eslint-plugin-json-es@npm:1.6.0" dependencies: eslint-visitor-keys: "npm:^3.3.0" espree: "npm:^9.3.1" peerDependencies: eslint: ">= 7" - checksum: 10/da9a5eefa6859974ecfa6491f3286d0c05dfe249a2cf8c8608d85cb12ff535f2688ef584c54ede33c85668ba4b7b65cc2db433917dc05a308f0bf1138a623481 + checksum: 10/4994fbc51dbe5ff87ae369c801c1de22590728a4fb7283be0989848e5d05cbc574dedcb95c5e3442c92e95e24f41cbd52909ff1f3b7670526833ef0652d93919 languageName: node linkType: hard -"eslint-plugin-jsonc@npm:^2.13.0": - version: 2.13.0 - resolution: "eslint-plugin-jsonc@npm:2.13.0" +"eslint-plugin-jsonc@npm:^2.16.0": + version: 2.16.0 + resolution: "eslint-plugin-jsonc@npm:2.16.0" dependencies: "@eslint-community/eslint-utils": "npm:^4.2.0" - eslint-compat-utils: "npm:^0.4.0" + eslint-compat-utils: "npm:^0.5.0" espree: "npm:^9.6.1" graphemer: "npm:^1.4.0" jsonc-eslint-parser: "npm:^2.0.4" @@ -4682,7 +4705,7 @@ __metadata: synckit: "npm:^0.6.0" peerDependencies: eslint: ">=6.0.0" - checksum: 10/32770482d40551de7722ddf3750a1d93ffd39fb8efc821dfb8d7a78ae0fa05c5f96a18b3e2c82beb295bb0411c22c6b6ee17156721c643e237d58f4088854708 + checksum: 10/bec880a4d6f0cd8ba37ae3a6528477d3161b41ca7b885ed43c34bed95d09b30fd1d277bfa9e487164f5a8aad265f3b075a4b479c20811fe0dd18c25b6835cf56 languageName: node linkType: hard @@ -4701,12 +4724,12 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-no-secrets@npm:^0.8.9": - version: 0.8.9 - resolution: "eslint-plugin-no-secrets@npm:0.8.9" +"eslint-plugin-no-secrets@npm:^1.0.2": + version: 1.0.2 + resolution: "eslint-plugin-no-secrets@npm:1.0.2" peerDependencies: eslint: ">=3.0.0" - checksum: 10/604587ad30c53ebd88166bf89457316defce89bb82ec1751ce01714cb47e69e7595a84bbcbbd45f9481b0fca76fcd378a8dd62e7b19a7c3deb9b5fe4f6083510 + checksum: 10/21826bb2eadeb066c6704503f09a77180a47e3a1feff6aaf6764f5199bb2b32fc47c748273e8804601a6b887b4433563e7e21e0b557501113dfb6ad36744e622 languageName: node linkType: hard @@ -4730,21 +4753,21 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-simple-import-sort@npm:^12.0.0": - version: 12.0.0 - resolution: "eslint-plugin-simple-import-sort@npm:12.0.0" +"eslint-plugin-simple-import-sort@npm:^12.1.0": + version: 12.1.1 + resolution: "eslint-plugin-simple-import-sort@npm:12.1.1" peerDependencies: eslint: ">=5.0.0" - checksum: 10/94d15a6b287b3036c402de4e034f2a4c950dc04be3a85c699f481327344bdecdeb659e86cfdf2dd69861b7044e10a4bef009029c107896ed1cf1c2badd7cdbce + checksum: 10/2a690cea9243fbefa70345687bca8952f5e185fa459b7a8db687a908cc31082435cfee236c619d5245548fa5f89a2f2c4f8499f80512e048d2bedc60e3662d5a languageName: node linkType: hard -"eslint-plugin-sonarjs@npm:^0.24.0": - version: 0.24.0 - resolution: "eslint-plugin-sonarjs@npm:0.24.0" +"eslint-plugin-sonarjs@npm:^1.0.3": + version: 1.0.3 + resolution: "eslint-plugin-sonarjs@npm:1.0.3" peerDependencies: - eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: 10/5d313f183d77a654d98b392ac878ab5492417f872e26a57d25649ddce1bf3e40c0765cb05e183f383a583bdc92d2b02b9b38139c180d190de85a9c6732bd1917 + eslint: ^8.0.0 || ^9.0.0 + checksum: 10/39667bb0eea863c4f49971dad85bdc1e38afb14682f68e94a66a7ed64e8479c8e85ae6d83c30bebd77e3588d88ba8f901613cf262aa0c7049df14d7e46caa4c4 languageName: node linkType: hard @@ -4760,16 +4783,16 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-unicorn@npm:^51.0.1": - version: 51.0.1 - resolution: "eslint-plugin-unicorn@npm:51.0.1" +"eslint-plugin-unicorn@npm:^54.0.0": + version: 54.0.0 + resolution: "eslint-plugin-unicorn@npm:54.0.0" dependencies: - "@babel/helper-validator-identifier": "npm:^7.22.20" + "@babel/helper-validator-identifier": "npm:^7.24.5" "@eslint-community/eslint-utils": "npm:^4.4.0" - "@eslint/eslintrc": "npm:^2.1.4" + "@eslint/eslintrc": "npm:^3.0.2" ci-info: "npm:^4.0.0" clean-regexp: "npm:^1.0.0" - core-js-compat: "npm:^3.34.0" + core-js-compat: "npm:^3.37.0" esquery: "npm:^1.5.0" indent-string: "npm:^4.0.0" is-builtin-module: "npm:^3.2.1" @@ -4778,20 +4801,20 @@ __metadata: read-pkg-up: "npm:^7.0.1" regexp-tree: "npm:^0.1.27" regjsparser: "npm:^0.10.0" - semver: "npm:^7.5.4" + semver: "npm:^7.6.1" strip-indent: "npm:^3.0.0" peerDependencies: eslint: ">=8.56.0" - checksum: 10/cea770332423d49d0cd86ca96055be7f14895e1d0a9fb24c8ed4f18a6e1eeff362d4881c46e85d85c37938bb85a6eeae7e347bcf7a3bb7307a8dd309651e0adf + checksum: 10/9150970d264a03e8cc09509296dbb9aefe8d1cd3c2ee5e69e43d6a0c0401e5e5648eae3f4930ba07833a0f06bd0713b12241337c4303dba862b205e41d64b410 languageName: node linkType: hard -"eslint-plugin-workspaces@npm:^0.10.0": - version: 0.10.0 - resolution: "eslint-plugin-workspaces@npm:0.10.0" +"eslint-plugin-workspaces@npm:^0.10.1": + version: 0.10.1 + resolution: "eslint-plugin-workspaces@npm:0.10.1" dependencies: find-workspaces: "npm:^0.3.0" - checksum: 10/efb6b8535b0c5b09d1b31107eb3967f02a61bb863c157240cd54ed7baf101b6efdc9df972804034e4e66a3181123033fa812251f1652060dbf72b643218703f6 + checksum: 10/22942be27b269a4f85b8d967c1bdec0eb766c8f8e95d3164f87b1579d50e9fc4653a614063173c18097c5bca073d1f9badb40adec1a1173740d62285790a0a0e languageName: node linkType: hard @@ -4805,13 +4828,13 @@ __metadata: languageName: node linkType: hard -"eslint-scope@npm:^7.2.2": - version: 7.2.2 - resolution: "eslint-scope@npm:7.2.2" +"eslint-scope@npm:^8.0.1": + version: 8.0.1 + resolution: "eslint-scope@npm:8.0.1" dependencies: esrecurse: "npm:^4.3.0" estraverse: "npm:^5.2.0" - checksum: 10/5c660fb905d5883ad018a6fea2b49f3cb5b1cbf2cd4bd08e98646e9864f9bc2c74c0839bed2d292e90a4a328833accc197c8f0baed89cbe8d605d6f918465491 + checksum: 10/458513863d3c79005b599f40250437bddba923f18549058ea45820a8d3d4bbc67fe292751d522a0cab69dd01fe211ffde5c1a5fc867e86f2d28727b1d61610da languageName: node linkType: hard @@ -4838,6 +4861,13 @@ __metadata: languageName: node linkType: hard +"eslint-visitor-keys@npm:^4.0.0": + version: 4.0.0 + resolution: "eslint-visitor-keys@npm:4.0.0" + checksum: 10/c7617166e6291a15ce2982b5c4b9cdfb6409f5c14562712d12e2584480cdf18609694b21d7dad35b02df0fa2cd037505048ded54d2f405c64f600949564eb334 + languageName: node + linkType: hard + "eslint@npm:^6.8.0": version: 6.8.0 resolution: "eslint@npm:6.8.0" @@ -4885,40 +4915,36 @@ __metadata: languageName: node linkType: hard -"eslint@npm:^8.57.0": - version: 8.57.0 - resolution: "eslint@npm:8.57.0" +"eslint@npm:^9.6.0": + version: 9.6.0 + resolution: "eslint@npm:9.6.0" dependencies: "@eslint-community/eslint-utils": "npm:^4.2.0" "@eslint-community/regexpp": "npm:^4.6.1" - "@eslint/eslintrc": "npm:^2.1.4" - "@eslint/js": "npm:8.57.0" - "@humanwhocodes/config-array": "npm:^0.11.14" + "@eslint/config-array": "npm:^0.17.0" + "@eslint/eslintrc": "npm:^3.1.0" + "@eslint/js": "npm:9.6.0" "@humanwhocodes/module-importer": "npm:^1.0.1" + "@humanwhocodes/retry": "npm:^0.3.0" "@nodelib/fs.walk": "npm:^1.2.8" - "@ungap/structured-clone": "npm:^1.2.0" ajv: "npm:^6.12.4" chalk: "npm:^4.0.0" cross-spawn: "npm:^7.0.2" debug: "npm:^4.3.2" - doctrine: "npm:^3.0.0" escape-string-regexp: "npm:^4.0.0" - eslint-scope: "npm:^7.2.2" - eslint-visitor-keys: "npm:^3.4.3" - espree: "npm:^9.6.1" - esquery: "npm:^1.4.2" + eslint-scope: "npm:^8.0.1" + eslint-visitor-keys: "npm:^4.0.0" + espree: "npm:^10.1.0" + esquery: "npm:^1.5.0" esutils: "npm:^2.0.2" fast-deep-equal: "npm:^3.1.3" - file-entry-cache: "npm:^6.0.1" + file-entry-cache: "npm:^8.0.0" find-up: "npm:^5.0.0" glob-parent: "npm:^6.0.2" - globals: "npm:^13.19.0" - graphemer: "npm:^1.4.0" ignore: "npm:^5.2.0" imurmurhash: "npm:^0.1.4" is-glob: "npm:^4.0.0" is-path-inside: "npm:^3.0.3" - js-yaml: "npm:^4.1.0" json-stable-stringify-without-jsonify: "npm:^1.0.1" levn: "npm:^0.4.1" lodash.merge: "npm:^4.6.2" @@ -4929,7 +4955,18 @@ __metadata: text-table: "npm:^0.2.0" bin: eslint: bin/eslint.js - checksum: 10/00496e218b23747a7a9817bf58b522276d0dc1f2e546dceb4eea49f9871574088f72f1f069a6b560ef537efa3a75261b8ef70e51ef19033da1cc4c86a755ef15 + checksum: 10/3230b13f30ab6204daf0413ef819d49c9b37cc54f246f39ed4b129b8e6ad0b4d4d30ad339c7196cb9110e28404f19cc028039481e629de77a5211ae761b9b122 + languageName: node + linkType: hard + +"espree@npm:^10.0.1, espree@npm:^10.1.0": + version: 10.1.0 + resolution: "espree@npm:10.1.0" + dependencies: + acorn: "npm:^8.12.0" + acorn-jsx: "npm:^5.3.2" + eslint-visitor-keys: "npm:^4.0.0" + checksum: 10/a673aa39a19a51763d92272f8f3772ae3d4b10624740bb72d5f273b631b43f1a5a32b385c1da6ae6bc10be05a5913bc4679ebd22a09c7b336a745204834806ea languageName: node linkType: hard @@ -4944,7 +4981,7 @@ __metadata: languageName: node linkType: hard -"espree@npm:^9.0.0, espree@npm:^9.3.1, espree@npm:^9.6.0, espree@npm:^9.6.1": +"espree@npm:^9.0.0, espree@npm:^9.3.1, espree@npm:^9.6.1": version: 9.6.1 resolution: "espree@npm:9.6.1" dependencies: @@ -4965,7 +5002,7 @@ __metadata: languageName: node linkType: hard -"esquery@npm:^1.0.1, esquery@npm:^1.4.2, esquery@npm:^1.5.0": +"esquery@npm:^1.0.1, esquery@npm:^1.5.0": version: 1.5.0 resolution: "esquery@npm:1.5.0" dependencies: @@ -5011,9 +5048,9 @@ __metadata: languageName: node linkType: hard -"ethers@npm:6.11.1, ethers@npm:^6.11.1, ethers@npm:^6.8.1": - version: 6.11.1 - resolution: "ethers@npm:6.11.1" +"ethers@npm:6.13.1, ethers@npm:^6.13.1, ethers@npm:^6.8.1": + version: 6.13.1 + resolution: "ethers@npm:6.13.1" dependencies: "@adraffy/ens-normalize": "npm:1.10.1" "@noble/curves": "npm:1.2.0" @@ -5021,8 +5058,8 @@ __metadata: "@types/node": "npm:18.15.13" aes-js: "npm:4.0.0-beta.5" tslib: "npm:2.4.0" - ws: "npm:8.5.0" - checksum: 10/bfeba2670dbfdac3951a66ab2d5bbc18dd7e1be69da9142ad4fe3859a30891e7bb048ecbb6ab542b67df777ada1860445bb3dd83536219c0d3639fe05e74df8e + ws: "npm:8.17.1" + checksum: 10/efc3e8d4d13101cad01823ba524dad797a23f60088ca9f8677bd6dbfad5087e4187ede121e43aa0758d704525976f935860c5d5d27183a4247deaccf7cf19950 languageName: node linkType: hard @@ -5261,12 +5298,21 @@ __metadata: languageName: node linkType: hard -"file-entry-cache@npm:^6.0.1": - version: 6.0.1 - resolution: "file-entry-cache@npm:6.0.1" +"file-entry-cache@npm:^8.0.0": + version: 8.0.0 + resolution: "file-entry-cache@npm:8.0.0" + dependencies: + flat-cache: "npm:^4.0.0" + checksum: 10/afe55c4de4e0d226a23c1eae62a7219aafb390859122608a89fa4df6addf55c7fd3f1a2da6f5b41e7cdff496e4cf28bbd215d53eab5c817afa96d2b40c81bfb0 + languageName: node + linkType: hard + +"filelist@npm:^1.0.4": + version: 1.0.4 + resolution: "filelist@npm:1.0.4" dependencies: - flat-cache: "npm:^3.0.4" - checksum: 10/099bb9d4ab332cb93c48b14807a6918a1da87c45dce91d4b61fd40e6505d56d0697da060cb901c729c90487067d93c9243f5da3dc9c41f0358483bfdebca736b + minimatch: "npm:^5.0.1" + checksum: 10/4b436fa944b1508b95cffdfc8176ae6947b92825483639ef1b9a89b27d82f3f8aa22b21eed471993f92709b431670d4e015b39c087d435a61e1bb04564cf51de languageName: node linkType: hard @@ -5345,14 +5391,13 @@ __metadata: languageName: node linkType: hard -"flat-cache@npm:^3.0.4": - version: 3.2.0 - resolution: "flat-cache@npm:3.2.0" +"flat-cache@npm:^4.0.0": + version: 4.0.1 + resolution: "flat-cache@npm:4.0.1" dependencies: flatted: "npm:^3.2.9" - keyv: "npm:^4.5.3" - rimraf: "npm:^3.0.2" - checksum: 10/02381c6ece5e9fa5b826c9bbea481d7fd77645d96e4b0b1395238124d581d10e56f17f723d897b6d133970f7a57f0fab9148cbbb67237a0a0ffe794ba60c0c70 + keyv: "npm:^4.5.4" + checksum: 10/58ce851d9045fffc7871ce2bd718bc485ad7e777bf748c054904b87c351ff1080c2c11da00788d78738bfb51b71e4d5ea12d13b98eb36e3358851ffe495b62dc languageName: node linkType: hard @@ -5421,15 +5466,14 @@ __metadata: languageName: node linkType: hard -"formidable@npm:^2.1.2": - version: 2.1.2 - resolution: "formidable@npm:2.1.2" +"formidable@npm:^3.5.1": + version: 3.5.1 + resolution: "formidable@npm:3.5.1" dependencies: dezalgo: "npm:^1.0.4" hexoid: "npm:^1.0.0" once: "npm:^1.4.0" - qs: "npm:^6.11.0" - checksum: 10/d385180e0461f65e6f7b70452859fe1c32aa97a290c2ca33f00cdc33145ef44fa68bbc9b93af2c3af73ae726e42c3477c6619c49f3c34b49934e9481275b7b4c + checksum: 10/c9a7bbbd4ca8142893da88b51cf7797adee022344ea180cf157a108bf999bed5ad8bc07a10a28d8a39fcbfaa02e8cba07f4ba336fbeb330deb23907336ba1fc2 languageName: node linkType: hard @@ -5692,18 +5736,19 @@ __metadata: languageName: node linkType: hard -"glob@npm:^10.2.2, glob@npm:^10.3.10, glob@npm:^10.3.7": - version: 10.3.10 - resolution: "glob@npm:10.3.10" +"glob@npm:^10.2.2, glob@npm:^10.3.10, glob@npm:^10.3.7, glob@npm:^10.4.1, glob@npm:^10.4.2": + version: 10.4.5 + resolution: "glob@npm:10.4.5" dependencies: foreground-child: "npm:^3.1.0" - jackspeak: "npm:^2.3.5" - minimatch: "npm:^9.0.1" - minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0" - path-scurry: "npm:^1.10.1" + jackspeak: "npm:^3.1.2" + minimatch: "npm:^9.0.4" + minipass: "npm:^7.1.2" + package-json-from-dist: "npm:^1.0.0" + path-scurry: "npm:^1.11.1" bin: glob: dist/esm/bin.mjs - checksum: 10/38bdb2c9ce75eb5ed168f309d4ed05b0798f640b637034800a6bf306f39d35409bf278b0eaaffaec07591085d3acb7184a201eae791468f0f617771c2486a6a8 + checksum: 10/698dfe11828b7efd0514cd11e573eaed26b2dff611f0400907281ce3eab0c1e56143ef9b35adc7c77ecc71fba74717b510c7c223d34ca8a98ec81777b293d4ac languageName: node linkType: hard @@ -5721,7 +5766,7 @@ __metadata: languageName: node linkType: hard -"glob@npm:^8.0.1, glob@npm:^8.0.3": +"glob@npm:^8.0.1": version: 8.1.0 resolution: "glob@npm:8.1.0" dependencies: @@ -5795,12 +5840,10 @@ __metadata: languageName: node linkType: hard -"globals@npm:^13.19.0": - version: 13.23.0 - resolution: "globals@npm:13.23.0" - dependencies: - type-fest: "npm:^0.20.2" - checksum: 10/bf6a8616f4a64959c0b9a8eb4dc8a02e7dd0082385f7f06bc9694d9fceabe39f83f83789322cfe0470914dc8b273b7a29af5570b9e1a0507d3fb7348a64703a3 +"globals@npm:^14.0.0": + version: 14.0.0 + resolution: "globals@npm:14.0.0" + checksum: 10/03939c8af95c6df5014b137cac83aa909090c3a3985caef06ee9a5a669790877af8698ab38007e4c0186873adc14c0b13764acc754b16a754c216cc56aa5f021 languageName: node linkType: hard @@ -6237,10 +6280,10 @@ __metadata: languageName: node linkType: hard -"ignore@npm:^5.2.0, ignore@npm:^5.2.4": - version: 5.3.0 - resolution: "ignore@npm:5.3.0" - checksum: 10/51594355cea4c6ad6b28b3b85eb81afa7b988a1871feefd7062baf136c95aa06760ee934fa9590e43d967bd377ce84a4cf6135fbeb6063e063f1182a0e9a3bcd +"ignore@npm:^5.2.0, ignore@npm:^5.2.4, ignore@npm:^5.3.1": + version: 5.3.1 + resolution: "ignore@npm:5.3.1" + checksum: 10/0a884c2fbc8c316f0b9f92beaf84464253b73230a4d4d286697be45fca081199191ca33e1c2e82d9e5f851f5e9a48a78e25a35c951e7eb41e59f150db3530065 languageName: node linkType: hard @@ -6401,6 +6444,13 @@ __metadata: languageName: node linkType: hard +"is-alphabetical@npm:^2.0.0": + version: 2.0.1 + resolution: "is-alphabetical@npm:2.0.1" + checksum: 10/56207db8d9de0850f0cd30f4966bf731eb82cedfe496cbc2e97e7c3bacaf66fc54a972d2d08c0d93bb679cb84976a05d24c5ad63de56fabbfc60aadae312edaa + languageName: node + linkType: hard + "is-alphanumeric@npm:^1.0.0": version: 1.0.0 resolution: "is-alphanumeric@npm:1.0.0" @@ -6418,6 +6468,16 @@ __metadata: languageName: node linkType: hard +"is-alphanumerical@npm:^2.0.0": + version: 2.0.1 + resolution: "is-alphanumerical@npm:2.0.1" + dependencies: + is-alphabetical: "npm:^2.0.0" + is-decimal: "npm:^2.0.0" + checksum: 10/87acc068008d4c9c4e9f5bd5e251041d42e7a50995c77b1499cf6ed248f971aadeddb11f239cabf09f7975ee58cac7a48ffc170b7890076d8d227b24a68663c9 + languageName: node + linkType: hard + "is-array-buffer@npm:^3.0.1, is-array-buffer@npm:^3.0.2": version: 3.0.2 resolution: "is-array-buffer@npm:3.0.2" @@ -6539,6 +6599,13 @@ __metadata: languageName: node linkType: hard +"is-decimal@npm:^2.0.0": + version: 2.0.1 + resolution: "is-decimal@npm:2.0.1" + checksum: 10/97132de7acdce77caa7b797632970a2ecd649a88e715db0e4dbc00ab0708b5e7574ba5903962c860cd4894a14fd12b100c0c4ac8aed445cf6f55c6cf747a4158 + languageName: node + linkType: hard + "is-descriptor@npm:^0.1.0": version: 0.1.7 resolution: "is-descriptor@npm:0.1.7" @@ -6628,6 +6695,13 @@ __metadata: languageName: node linkType: hard +"is-hexadecimal@npm:^2.0.0": + version: 2.0.1 + resolution: "is-hexadecimal@npm:2.0.1" + checksum: 10/66a2ea85994c622858f063f23eda506db29d92b52580709eb6f4c19550552d4dcf3fb81952e52f7cf972097237959e00adc7bb8c9400cd12886e15bf06145321 + languageName: node + linkType: hard + "is-installed-globally@npm:^0.4.0": version: 0.4.0 resolution: "is-installed-globally@npm:0.4.0" @@ -6957,16 +7031,30 @@ __metadata: languageName: node linkType: hard -"jackspeak@npm:^2.3.5": - version: 2.3.6 - resolution: "jackspeak@npm:2.3.6" +"jackspeak@npm:^3.1.2": + version: 3.4.3 + resolution: "jackspeak@npm:3.4.3" dependencies: "@isaacs/cliui": "npm:^8.0.2" "@pkgjs/parseargs": "npm:^0.11.0" dependenciesMeta: "@pkgjs/parseargs": optional: true - checksum: 10/6e6490d676af8c94a7b5b29b8fd5629f21346911ebe2e32931c2a54210134408171c24cee1a109df2ec19894ad04a429402a8438cbf5cc2794585d35428ace76 + checksum: 10/96f8786eaab98e4bf5b2a5d6d9588ea46c4d06bbc4f2eb861fdd7b6b182b16f71d8a70e79820f335d52653b16d4843b29dd9cdcf38ae80406756db9199497cf3 + languageName: node + linkType: hard + +"jake@npm:^10.8.5": + version: 10.9.1 + resolution: "jake@npm:10.9.1" + dependencies: + async: "npm:^3.2.3" + chalk: "npm:^4.0.2" + filelist: "npm:^1.0.4" + minimatch: "npm:^3.1.2" + bin: + jake: bin/cli.js + checksum: 10/82603513de5a61bc12360d2b8ba2be9f6bb52495b73f4d1b541cdfef9e43314b132ca10e73d2b41e3c1ea16bf79ec30a64afc9b9e2d2c72a4d4575a8db61cbc8 languageName: node linkType: hard @@ -7205,15 +7293,15 @@ __metadata: languageName: node linkType: hard -"jest-mock-extended@npm:^3.0.5": - version: 3.0.5 - resolution: "jest-mock-extended@npm:3.0.5" +"jest-mock-extended@npm:^3.0.7": + version: 3.0.7 + resolution: "jest-mock-extended@npm:3.0.7" dependencies: - ts-essentials: "npm:^7.0.3" + ts-essentials: "npm:^10.0.0" peerDependencies: jest: ^24.0.0 || ^25.0.0 || ^26.0.0 || ^27.0.0 || ^28.0.0 || ^29.0.0 typescript: ^3.0.0 || ^4.0.0 || ^5.0.0 - checksum: 10/02b025754cf8c0280d5d529601fc1db10c555578dbd56bdd2663f344b1626871d923ab02894246e08f5b31979370c95f25516bee7dc48979dc136a55fdf22568 + checksum: 10/7d5fb9d4ad07dbed9d4f1dd011eb26ca20d9ca4aab3c807749f761220315ef8a6bdf767b1ce1e68ae10405e35ba899c4fcee55cf327deb2d9950910e818f40fa languageName: node linkType: hard @@ -7608,10 +7696,10 @@ __metadata: languageName: node linkType: hard -"jsonc-parser@npm:^3.2.0": - version: 3.2.0 - resolution: "jsonc-parser@npm:3.2.0" - checksum: 10/bd68b902e5f9394f01da97921f49c5084b2dc03a0c5b4fdb2a429f8d6f292686c1bf87badaeb0a8148d024192a88f5ad2e57b2918ba43fe25cf15f3371db64d4 +"jsonc-parser@npm:^3.2.0, jsonc-parser@npm:^3.2.1": + version: 3.3.1 + resolution: "jsonc-parser@npm:3.3.1" + checksum: 10/9b0dc391f20b47378f843ef1e877e73ec652a5bdc3c5fa1f36af0f119a55091d147a86c1ee86a232296f55c929bba174538c2bf0312610e0817a22de131cc3f4 languageName: node linkType: hard @@ -7643,7 +7731,7 @@ __metadata: languageName: node linkType: hard -"keyv@npm:^4.5.3": +"keyv@npm:^4.5.3, keyv@npm:^4.5.4": version: 4.5.4 resolution: "keyv@npm:4.5.4" dependencies: @@ -7684,7 +7772,7 @@ __metadata: languageName: node linkType: hard -"kleur@npm:^4.0.1, kleur@npm:^4.0.3": +"kleur@npm:^4.0.1": version: 4.1.5 resolution: "kleur@npm:4.1.5" checksum: 10/44d84cc4eedd4311099402ef6d4acd9b2d16e08e499d6ef3bb92389bd4692d7ef09e35248c26e27f98acac532122acb12a1bfee645994ae3af4f0a37996da7df @@ -7852,10 +7940,10 @@ __metadata: languageName: node linkType: hard -"lru-cache@npm:^10.0.1, lru-cache@npm:^9.1.1 || ^10.0.0": - version: 10.0.3 - resolution: "lru-cache@npm:10.0.3" - checksum: 10/2fd14d8f828760eb4f1e696d20383bf52bb58a02aebfd08cb8035a66876c6fc1ec244ffdcf93d5a201fdad6d9f8c59de62c4fc5ff5604d67a4f833441f5b5945 +"lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0": + version: 10.4.3 + resolution: "lru-cache@npm:10.4.3" + checksum: 10/e6e90267360476720fa8e83cc168aa2bf0311f3f2eea20a6ba78b90a885ae72071d9db132f40fda4129c803e7dcec3a6b6a6fbb44ca90b081630b810b5d6a41a languageName: node linkType: hard @@ -8030,7 +8118,7 @@ __metadata: languageName: node linkType: hard -"mapbox-gl@npm:^3.2.0": +"mapbox-gl@npm:~3.2": version: 3.2.0 resolution: "mapbox-gl@npm:3.2.0" dependencies: @@ -8103,13 +8191,13 @@ __metadata: languageName: node linkType: hard -"mdast-comment-marker@npm:^2.0.0": - version: 2.1.2 - resolution: "mdast-comment-marker@npm:2.1.2" +"mdast-comment-marker@npm:^3.0.0": + version: 3.0.0 + resolution: "mdast-comment-marker@npm:3.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - mdast-util-mdx-expression: "npm:^1.1.0" - checksum: 10/f88415cda29258df780dae0f4314660fc71ee18dbd0e7fbfc897177d562a1c3a34c650a595a01a1628508088197843424c95938b8980cb1d4ee11fe78c5ce851 + "@types/mdast": "npm:^4.0.0" + mdast-util-mdx-expression: "npm:^2.0.0" + checksum: 10/4a01899f50301c542a054ede974a1bc481de1b7c798c13974bde9e34c006ec744d937c24eb7b7595a26f491f3558848621f6c81e7576702e3b89822b6f923268 languageName: node linkType: hard @@ -8122,23 +8210,39 @@ __metadata: languageName: node linkType: hard -"mdast-util-from-markdown@npm:^1.0.0": - version: 1.3.1 - resolution: "mdast-util-from-markdown@npm:1.3.1" +"mdast-util-directive@npm:^3.0.0": + version: 3.0.0 + resolution: "mdast-util-directive@npm:3.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - "@types/unist": "npm:^2.0.0" + "@types/mdast": "npm:^4.0.0" + "@types/unist": "npm:^3.0.0" + devlop: "npm:^1.0.0" + mdast-util-from-markdown: "npm:^2.0.0" + mdast-util-to-markdown: "npm:^2.0.0" + parse-entities: "npm:^4.0.0" + stringify-entities: "npm:^4.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/a205af936302467648b6007704b40e31a822016789402cbcb0239d23ce7a48e676db1cd6792c9318c1047a47c5b3956b2bd0053f14c8d257528404d6bf9b9ab4 + languageName: node + linkType: hard + +"mdast-util-from-markdown@npm:^2.0.0": + version: 2.0.1 + resolution: "mdast-util-from-markdown@npm:2.0.1" + dependencies: + "@types/mdast": "npm:^4.0.0" + "@types/unist": "npm:^3.0.0" decode-named-character-reference: "npm:^1.0.0" - mdast-util-to-string: "npm:^3.1.0" - micromark: "npm:^3.0.0" - micromark-util-decode-numeric-character-reference: "npm:^1.0.0" - micromark-util-decode-string: "npm:^1.0.0" - micromark-util-normalize-identifier: "npm:^1.0.0" - micromark-util-symbol: "npm:^1.0.0" - micromark-util-types: "npm:^1.0.0" - unist-util-stringify-position: "npm:^3.0.0" - uvu: "npm:^0.5.0" - checksum: 10/1d334a54ddd6481ec4acf64c2c537b6463bc5113ba5a408f65c228dcc302d46837352814f11307af0f8b51dd7e4a0b887ce692e4d30ff31ff9d578b8ca82810b + devlop: "npm:^1.0.0" + mdast-util-to-string: "npm:^4.0.0" + micromark: "npm:^4.0.0" + micromark-util-decode-numeric-character-reference: "npm:^2.0.0" + micromark-util-decode-string: "npm:^2.0.0" + micromark-util-normalize-identifier: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + unist-util-stringify-position: "npm:^4.0.0" + checksum: 10/4172759cdd8cf9990701796c5617c8b6a4bd3f9863e730bb4e9689189daec80af3122e77eed2ab09090f1a2d396c4f5754416a41769d7c49efd165a1c0a033c8 languageName: node linkType: hard @@ -8149,67 +8253,116 @@ __metadata: languageName: node linkType: hard -"mdast-util-heading-style@npm:^2.0.0": - version: 2.0.1 - resolution: "mdast-util-heading-style@npm:2.0.1" +"mdast-util-heading-style@npm:^3.0.0": + version: 3.0.0 + resolution: "mdast-util-heading-style@npm:3.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - checksum: 10/b3b747b21afe4ce64481bd61c4960cd77260509f7fec2c8809a3400866a73795b6424b9bc5b3df6937cdb27445e62f9191ac4e7d94f42592bbf82b6c602acd26 + "@types/mdast": "npm:^4.0.0" + checksum: 10/ba6b21f0f778b9328b850b86ec3bf5cb3e1787ec4f2a08f5335a9b261dc86513df687f4dda2a1126e312881619624bb4bb9b2623cb888a6ccc8159fba35efeff languageName: node linkType: hard -"mdast-util-mdx-expression@npm:^1.1.0": - version: 1.3.2 - resolution: "mdast-util-mdx-expression@npm:1.3.2" +"mdast-util-mdx-expression@npm:^2.0.0": + version: 2.0.0 + resolution: "mdast-util-mdx-expression@npm:2.0.0" dependencies: "@types/estree-jsx": "npm:^1.0.0" - "@types/hast": "npm:^2.0.0" - "@types/mdast": "npm:^3.0.0" - mdast-util-from-markdown: "npm:^1.0.0" - mdast-util-to-markdown: "npm:^1.0.0" - checksum: 10/90b8ec5b6fdd05282f45c1286bb8c5c3568959877930a10b8bcae100676d3baead8c6f26a768abfe74fde93fbf9cd0eabb3ab63af88a6026a3029a3f6700bd63 + "@types/hast": "npm:^3.0.0" + "@types/mdast": "npm:^4.0.0" + devlop: "npm:^1.0.0" + mdast-util-from-markdown: "npm:^2.0.0" + mdast-util-to-markdown: "npm:^2.0.0" + checksum: 10/378f3cbc899e95a07f3889e413ed353597331790fdbd6b9efd24bee4fb1eae11e10d35785a86e3967f301ad445b218a4d4f9af4f1453cc58e7c6a6c02a178a8a languageName: node linkType: hard -"mdast-util-phrasing@npm:^3.0.0": - version: 3.0.1 - resolution: "mdast-util-phrasing@npm:3.0.1" +"mdast-util-mdx-jsx@npm:^3.0.0": + version: 3.1.2 + resolution: "mdast-util-mdx-jsx@npm:3.1.2" dependencies: - "@types/mdast": "npm:^3.0.0" - unist-util-is: "npm:^5.0.0" - checksum: 10/c5b616d9b1eb76a6b351d195d94318494722525a12a89d9c8a3b091af7db3dd1fc55d294f9d29266d8159a8267b0df4a7a133bda8a3909d5331c383e1e1ff328 + "@types/estree-jsx": "npm:^1.0.0" + "@types/hast": "npm:^3.0.0" + "@types/mdast": "npm:^4.0.0" + "@types/unist": "npm:^3.0.0" + ccount: "npm:^2.0.0" + devlop: "npm:^1.1.0" + mdast-util-from-markdown: "npm:^2.0.0" + mdast-util-to-markdown: "npm:^2.0.0" + parse-entities: "npm:^4.0.0" + stringify-entities: "npm:^4.0.0" + unist-util-remove-position: "npm:^5.0.0" + unist-util-stringify-position: "npm:^4.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/b0b457b0fd8b2c71ff4136eac04428e1cfb5ed65918948c899c5907ba41373fdf790f0c29f5aa0125e03bfde02444589a6c59006929a76a176648a053d79931b + languageName: node + linkType: hard + +"mdast-util-mdx@npm:^3.0.0": + version: 3.0.0 + resolution: "mdast-util-mdx@npm:3.0.0" + dependencies: + mdast-util-from-markdown: "npm:^2.0.0" + mdast-util-mdx-expression: "npm:^2.0.0" + mdast-util-mdx-jsx: "npm:^3.0.0" + mdast-util-mdxjs-esm: "npm:^2.0.0" + mdast-util-to-markdown: "npm:^2.0.0" + checksum: 10/547d928f0d1e60d9087cd8ad301cdf2e1d14b094d2662a00292874b923bcb59323bdad3a29804c7f323ad78f4d3954361bfdaf4a9be765c4e6fe47a815df50c2 languageName: node linkType: hard -"mdast-util-to-markdown@npm:^1.0.0": - version: 1.5.0 - resolution: "mdast-util-to-markdown@npm:1.5.0" +"mdast-util-mdxjs-esm@npm:^2.0.0": + version: 2.0.1 + resolution: "mdast-util-mdxjs-esm@npm:2.0.1" dependencies: - "@types/mdast": "npm:^3.0.0" - "@types/unist": "npm:^2.0.0" - longest-streak: "npm:^3.0.0" - mdast-util-phrasing: "npm:^3.0.0" - mdast-util-to-string: "npm:^3.0.0" - micromark-util-decode-string: "npm:^1.0.0" - unist-util-visit: "npm:^4.0.0" - zwitch: "npm:^2.0.0" - checksum: 10/713f674588a01969a2ce524a69985bd57e507377eea2c4ba69800fb305414468b30144ae9b837fbdde8c609877673140e4f56f6cabe9e0e2bc1487291e3c5144 + "@types/estree-jsx": "npm:^1.0.0" + "@types/hast": "npm:^3.0.0" + "@types/mdast": "npm:^4.0.0" + devlop: "npm:^1.0.0" + mdast-util-from-markdown: "npm:^2.0.0" + mdast-util-to-markdown: "npm:^2.0.0" + checksum: 10/05474226e163a3f407fccb5780b0d8585a95e548e5da4a85227df43f281b940c7941a9a9d4af1be4f885fe554731647addb057a728e87aa1f503ff9cc72c9163 languageName: node linkType: hard -"mdast-util-to-string@npm:^1.0.2": - version: 1.1.0 - resolution: "mdast-util-to-string@npm:1.1.0" - checksum: 10/eec1eb283f3341376c8398b67ce512a11ab3e3191e3dbd5644d32a26784eac8d5f6d0b0fb81193af00d75a2c545cde765c8b03e966bd890076efb5d357fb4fe2 +"mdast-util-phrasing@npm:^4.0.0": + version: 4.1.0 + resolution: "mdast-util-phrasing@npm:4.1.0" + dependencies: + "@types/mdast": "npm:^4.0.0" + unist-util-is: "npm:^6.0.0" + checksum: 10/3a97533e8ad104a422f8bebb34b3dde4f17167b8ed3a721cf9263c7416bd3447d2364e6d012a594aada40cac9e949db28a060bb71a982231693609034ed5324e languageName: node linkType: hard -"mdast-util-to-string@npm:^3.0.0, mdast-util-to-string@npm:^3.1.0": - version: 3.2.0 - resolution: "mdast-util-to-string@npm:3.2.0" +"mdast-util-to-markdown@npm:^2.0.0": + version: 2.1.0 + resolution: "mdast-util-to-markdown@npm:2.1.0" + dependencies: + "@types/mdast": "npm:^4.0.0" + "@types/unist": "npm:^3.0.0" + longest-streak: "npm:^3.0.0" + mdast-util-phrasing: "npm:^4.0.0" + mdast-util-to-string: "npm:^4.0.0" + micromark-util-decode-string: "npm:^2.0.0" + unist-util-visit: "npm:^5.0.0" + zwitch: "npm:^2.0.0" + checksum: 10/1c66462feab6bf574566d8f20912ccb11d43f6658a93dee068610cd39a5d9377dfb34ea7109c9467d485466300a116e74236b174fcb9fc34f1d16fc3917e0d7c + languageName: node + linkType: hard + +"mdast-util-to-string@npm:^1.0.2": + version: 1.1.0 + resolution: "mdast-util-to-string@npm:1.1.0" + checksum: 10/eec1eb283f3341376c8398b67ce512a11ab3e3191e3dbd5644d32a26784eac8d5f6d0b0fb81193af00d75a2c545cde765c8b03e966bd890076efb5d357fb4fe2 + languageName: node + linkType: hard + +"mdast-util-to-string@npm:^4.0.0": + version: 4.0.0 + resolution: "mdast-util-to-string@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - checksum: 10/fafe201c12a0d412a875fe8540bf70b4360f3775fb7f0d19403ba7b59e50f74f730e3b405c72ad940bc8a3ec1ba311f76dfca61c4ce585dce1ccda2168ec244f + "@types/mdast": "npm:^4.0.0" + checksum: 10/f4a5dbb9ea03521d7d3e26a9ba5652a1d6fbd55706dddd2155427517085688830e0ecd3f12418cfd40892640886eb39a4034c3c967d85e01e2fa64cfb53cff05 languageName: node linkType: hard @@ -8254,239 +8407,239 @@ __metadata: languageName: node linkType: hard -"micromark-core-commonmark@npm:^1.0.1": - version: 1.1.0 - resolution: "micromark-core-commonmark@npm:1.1.0" +"micromark-core-commonmark@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-core-commonmark@npm:2.0.1" dependencies: decode-named-character-reference: "npm:^1.0.0" - micromark-factory-destination: "npm:^1.0.0" - micromark-factory-label: "npm:^1.0.0" - micromark-factory-space: "npm:^1.0.0" - micromark-factory-title: "npm:^1.0.0" - micromark-factory-whitespace: "npm:^1.0.0" - micromark-util-character: "npm:^1.0.0" - micromark-util-chunked: "npm:^1.0.0" - micromark-util-classify-character: "npm:^1.0.0" - micromark-util-html-tag-name: "npm:^1.0.0" - micromark-util-normalize-identifier: "npm:^1.0.0" - micromark-util-resolve-all: "npm:^1.0.0" - micromark-util-subtokenize: "npm:^1.0.0" - micromark-util-symbol: "npm:^1.0.0" - micromark-util-types: "npm:^1.0.1" - uvu: "npm:^0.5.0" - checksum: 10/a73694d223ac8baad8ff00597a3c39d61f5b32bfd56fe4bcf295d75b2a4e8e67fb2edbfc7cc287b362b9d7f6d24fce08b6a7e8b5b155d79bcc1e4d9b2756ffb2 - languageName: node - linkType: hard - -"micromark-factory-destination@npm:^1.0.0": - version: 1.1.0 - resolution: "micromark-factory-destination@npm:1.1.0" + devlop: "npm:^1.0.0" + micromark-factory-destination: "npm:^2.0.0" + micromark-factory-label: "npm:^2.0.0" + micromark-factory-space: "npm:^2.0.0" + micromark-factory-title: "npm:^2.0.0" + micromark-factory-whitespace: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-chunked: "npm:^2.0.0" + micromark-util-classify-character: "npm:^2.0.0" + micromark-util-html-tag-name: "npm:^2.0.0" + micromark-util-normalize-identifier: "npm:^2.0.0" + micromark-util-resolve-all: "npm:^2.0.0" + micromark-util-subtokenize: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10/15e788b3222401572ff8f549f8ecba21fa3395c000b8005e47204e8c97200e98bb0652c2c648e357b0996f1b50a7a63cc43e849f2976e4845b4453049040f8cc + languageName: node + linkType: hard + +"micromark-factory-destination@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-factory-destination@npm:2.0.0" dependencies: - micromark-util-character: "npm:^1.0.0" - micromark-util-symbol: "npm:^1.0.0" - micromark-util-types: "npm:^1.0.0" - checksum: 10/9e2b5fb5fedbf622b687e20d51eb3d56ae90c0e7ecc19b37bd5285ec392c1e56f6e21aa7cfcb3c01eda88df88fe528f3acb91a5f57d7f4cba310bc3cd7f824fa + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10/d36e65ed1c072ff4148b016783148ba7c68a078991154625723e24bda3945160268fb91079fb28618e1613c2b6e70390a8ddc544c45410288aa27b413593071a languageName: node linkType: hard -"micromark-factory-label@npm:^1.0.0": - version: 1.1.0 - resolution: "micromark-factory-label@npm:1.1.0" +"micromark-factory-label@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-factory-label@npm:2.0.0" dependencies: - micromark-util-character: "npm:^1.0.0" - micromark-util-symbol: "npm:^1.0.0" - micromark-util-types: "npm:^1.0.0" - uvu: "npm:^0.5.0" - checksum: 10/fcda48f1287d9b148c562c627418a2ab759cdeae9c8e017910a0cba94bb759a96611e1fc6df33182e97d28fbf191475237298983bb89ef07d5b02464b1ad28d5 + devlop: "npm:^1.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10/c021dbd0ed367610d35f2bae21209bc804d1a6d1286ffce458fd6a717f4d7fe581a7cba7d5c2d7a63757c44eb927c80d6a571d6ea7969fae1b48ab6461d109c4 languageName: node linkType: hard -"micromark-factory-space@npm:^1.0.0": - version: 1.1.0 - resolution: "micromark-factory-space@npm:1.1.0" +"micromark-factory-space@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-factory-space@npm:2.0.0" dependencies: - micromark-util-character: "npm:^1.0.0" - micromark-util-types: "npm:^1.0.0" - checksum: 10/b58435076b998a7e244259a4694eb83c78915581206b6e7fc07b34c6abd36a1726ade63df8972fbf6c8fa38eecb9074f4e17be8d53f942e3b3d23d1a0ecaa941 + micromark-util-character: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10/4ffdcdc2f759887bbb356500cb460b3915ecddcb5d85c3618d7df68ad05d13ed02b1153ee1845677b7d8126df8f388288b84fcf0d943bd9c92bcc71cd7222e37 languageName: node linkType: hard -"micromark-factory-title@npm:^1.0.0": - version: 1.1.0 - resolution: "micromark-factory-title@npm:1.1.0" +"micromark-factory-title@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-factory-title@npm:2.0.0" dependencies: - micromark-factory-space: "npm:^1.0.0" - micromark-util-character: "npm:^1.0.0" - micromark-util-symbol: "npm:^1.0.0" - micromark-util-types: "npm:^1.0.0" - checksum: 10/4432d3dbc828c81f483c5901b0c6591a85d65a9e33f7d96ba7c3ae821617a0b3237ff5faf53a9152d00aaf9afb3a9f185b205590f40ed754f1d9232e0e9157b1 + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10/39e1ac23af3554e6e652e56065579bc7faf21ade7b8704b29c175871b4152b7109b790bb3cae0f7e088381139c6bac9553b8400772c3d322e4fa635f813a3578 languageName: node linkType: hard -"micromark-factory-whitespace@npm:^1.0.0": - version: 1.1.0 - resolution: "micromark-factory-whitespace@npm:1.1.0" +"micromark-factory-whitespace@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-factory-whitespace@npm:2.0.0" dependencies: - micromark-factory-space: "npm:^1.0.0" - micromark-util-character: "npm:^1.0.0" - micromark-util-symbol: "npm:^1.0.0" - micromark-util-types: "npm:^1.0.0" - checksum: 10/ef0fa682c7d593d85a514ee329809dee27d10bc2a2b65217d8ef81173e33b8e83c549049764b1ad851adfe0a204dec5450d9d20a4ca8598f6c94533a73f73fcd + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10/9587c2546d1a58b4d5472b42adf05463f6212d0449455285662d63cd8eaed89c6b159ac82713fcee5f9dd88628c24307d9533cccd8971a2f3f4d48702f8f850a languageName: node linkType: hard -"micromark-util-character@npm:^1.0.0": - version: 1.2.0 - resolution: "micromark-util-character@npm:1.2.0" +"micromark-util-character@npm:^2.0.0": + version: 2.1.0 + resolution: "micromark-util-character@npm:2.1.0" dependencies: - micromark-util-symbol: "npm:^1.0.0" - micromark-util-types: "npm:^1.0.0" - checksum: 10/88cf80f9b4c95266f24814ef587fb4180454668dcc3be4ac829e1227188cf349c8981bfca29e3eab1682f324c2c47544c0b0b799a26fbf9df5f156c6a84c970c + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10/089fe853c2bede2a48fd73d977910fa657c3cf6649eddcd300557a975c6c7f1c73030d01724a483ff1dc69a0d3ac28b43b2ba4210f5ea6414807cdcd0c2fa63c languageName: node linkType: hard -"micromark-util-chunked@npm:^1.0.0": - version: 1.1.0 - resolution: "micromark-util-chunked@npm:1.1.0" +"micromark-util-chunked@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-chunked@npm:2.0.0" dependencies: - micromark-util-symbol: "npm:^1.0.0" - checksum: 10/c435bde9110cb595e3c61b7f54c2dc28ee03e6a57fa0fc1e67e498ad8bac61ee5a7457a2b6a73022ddc585676ede4b912d28dcf57eb3bd6951e54015e14dc20b + micromark-util-symbol: "npm:^2.0.0" + checksum: 10/324f95cccdae061332a8241936eaba6ef0782a1e355bac5c607ad2564fd3744929be7dc81651315a2921535747a33243e6a5606bcb64b7a56d49b6d74ea1a3d4 languageName: node linkType: hard -"micromark-util-classify-character@npm:^1.0.0": - version: 1.1.0 - resolution: "micromark-util-classify-character@npm:1.1.0" +"micromark-util-classify-character@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-classify-character@npm:2.0.0" dependencies: - micromark-util-character: "npm:^1.0.0" - micromark-util-symbol: "npm:^1.0.0" - micromark-util-types: "npm:^1.0.0" - checksum: 10/8499cb0bb1f7fb946f5896285fcca65cd742f66cd3e79ba7744792bd413ec46834f932a286de650349914d02e822946df3b55d03e6a8e1d245d1ddbd5102e5b0 + micromark-util-character: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10/086e52904deffebb793fb1c08c94aabb8901f76958142dfc3a6282890ebaa983b285e69bd602b9d507f1b758ed38e75a994d2ad9fbbefa7de2584f67a16af405 languageName: node linkType: hard -"micromark-util-combine-extensions@npm:^1.0.0": - version: 1.1.0 - resolution: "micromark-util-combine-extensions@npm:1.1.0" +"micromark-util-combine-extensions@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-combine-extensions@npm:2.0.0" dependencies: - micromark-util-chunked: "npm:^1.0.0" - micromark-util-types: "npm:^1.0.0" - checksum: 10/ee78464f5d4b61ccb437850cd2d7da4d690b260bca4ca7a79c4bb70291b84f83988159e373b167181b6716cb197e309bc6e6c96a68cc3ba9d50c13652774aba9 + micromark-util-chunked: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10/107c47700343f365b4ed81551e18bc3458b573c500e56ac052b2490bd548adc475216e41d2271633a8867fac66fc22ba3e0a2d74a31ed79b9870ca947eb4e3ba languageName: node linkType: hard -"micromark-util-decode-numeric-character-reference@npm:^1.0.0": - version: 1.1.0 - resolution: "micromark-util-decode-numeric-character-reference@npm:1.1.0" +"micromark-util-decode-numeric-character-reference@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-util-decode-numeric-character-reference@npm:2.0.1" dependencies: - micromark-util-symbol: "npm:^1.0.0" - checksum: 10/4733fe75146e37611243f055fc6847137b66f0cde74d080e33bd26d0408c1d6f44cabc984063eee5968b133cb46855e729d555b9ff8d744652262b7b51feec73 + micromark-util-symbol: "npm:^2.0.0" + checksum: 10/9512507722efd2033a9f08715eeef787fbfe27e23edf55db21423d46d82ab46f76c89b4f960be3f5e50a2d388d89658afc0647989cf256d051e9ea01277a1adb languageName: node linkType: hard -"micromark-util-decode-string@npm:^1.0.0": - version: 1.1.0 - resolution: "micromark-util-decode-string@npm:1.1.0" +"micromark-util-decode-string@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-decode-string@npm:2.0.0" dependencies: decode-named-character-reference: "npm:^1.0.0" - micromark-util-character: "npm:^1.0.0" - micromark-util-decode-numeric-character-reference: "npm:^1.0.0" - micromark-util-symbol: "npm:^1.0.0" - checksum: 10/f1625155db452f15aa472918499689ba086b9c49d1322a08b22bfbcabe918c61b230a3002c8bc3ea9b1f52ca7a9bb1c3dd43ccb548c7f5f8b16c24a1ae77a813 + micromark-util-character: "npm:^2.0.0" + micromark-util-decode-numeric-character-reference: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + checksum: 10/a75daf32a4a6b549e9f19b4d833ebfeb09a32a9a1f9ce50f35dec6b6a3e4f9f121f49024ba7f9c91c55ebe792f7c7a332fc9604795181b6a612637df0df5b959 languageName: node linkType: hard -"micromark-util-encode@npm:^1.0.0": - version: 1.1.0 - resolution: "micromark-util-encode@npm:1.1.0" - checksum: 10/4ef29d02b12336918cea6782fa87c8c578c67463925221d4e42183a706bde07f4b8b5f9a5e1c7ce8c73bb5a98b261acd3238fecd152e6dd1cdfa2d1ae11b60a0 +"micromark-util-encode@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-encode@npm:2.0.0" + checksum: 10/853a3f33fce72aaf4ffa60b7f2b6fcfca40b270b3466e1b96561b02185d2bd8c01dd7948bc31a24ac014f4cc854e545ca9a8e9cf7ea46262f9d24c9e88551c66 languageName: node linkType: hard -"micromark-util-html-tag-name@npm:^1.0.0": - version: 1.2.0 - resolution: "micromark-util-html-tag-name@npm:1.2.0" - checksum: 10/ccf0fa99b5c58676dc5192c74665a3bfd1b536fafaf94723bd7f31f96979d589992df6fcf2862eba290ef18e6a8efb30ec8e1e910d9f3fc74f208871e9f84750 +"micromark-util-html-tag-name@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-html-tag-name@npm:2.0.0" + checksum: 10/d786d4486f93eb0ac5b628779809ca97c5dc60f3c9fc03eb565809831db181cf8cb7f05f9ac76852f3eb35461af0f89fa407b46f3a03f4f97a96754d8dc540d8 languageName: node linkType: hard -"micromark-util-normalize-identifier@npm:^1.0.0": - version: 1.1.0 - resolution: "micromark-util-normalize-identifier@npm:1.1.0" +"micromark-util-normalize-identifier@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-normalize-identifier@npm:2.0.0" dependencies: - micromark-util-symbol: "npm:^1.0.0" - checksum: 10/8655bea41ffa4333e03fc22462cb42d631bbef9c3c07b625fd852b7eb442a110f9d2e5902a42e65188d85498279569502bf92f3434a1180fc06f7c37edfbaee2 + micromark-util-symbol: "npm:^2.0.0" + checksum: 10/b36da2d3fd102053dadd953ce5c558328df12a63a8ac0e5aad13d4dda8e43b6a5d4a661baafe0a1cd8a260bead4b4a8e6e0e74193dd651e8484225bd4f4e68aa languageName: node linkType: hard -"micromark-util-resolve-all@npm:^1.0.0": - version: 1.1.0 - resolution: "micromark-util-resolve-all@npm:1.1.0" +"micromark-util-resolve-all@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-resolve-all@npm:2.0.0" dependencies: - micromark-util-types: "npm:^1.0.0" - checksum: 10/1ce6c0237cd3ca061e76fae6602cf95014e764a91be1b9f10d36cb0f21ca88f9a07de8d49ab8101efd0b140a4fbfda6a1efb72027ab3f4d5b54c9543271dc52c + micromark-util-types: "npm:^2.0.0" + checksum: 10/31fe703b85572cb3f598ebe32750e59516925c7ff1f66cfe6afaebe0771a395a9eaa770787f2523d3c46082ea80e6c14f83643303740b3d650af7c96ebd30ccc languageName: node linkType: hard -"micromark-util-sanitize-uri@npm:^1.0.0": - version: 1.2.0 - resolution: "micromark-util-sanitize-uri@npm:1.2.0" +"micromark-util-sanitize-uri@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-sanitize-uri@npm:2.0.0" dependencies: - micromark-util-character: "npm:^1.0.0" - micromark-util-encode: "npm:^1.0.0" - micromark-util-symbol: "npm:^1.0.0" - checksum: 10/0d024100d95ffb88bf75f3360e305b545c1eb745430959b8633f7aa93f37ec401fc7094c90c97298409a9e30d94d53b895bae224e1bb966bea114976cfa0fd48 + micromark-util-character: "npm:^2.0.0" + micromark-util-encode: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + checksum: 10/7d10622f5a2bb058dda6d2e95b2735c43fdf8daa4f88a0863bc90eef6598f8e10e3df98e034341fcbc090d8021c53501308c463c49d3fe91f41eb64b5bf2766e languageName: node linkType: hard -"micromark-util-subtokenize@npm:^1.0.0": - version: 1.1.0 - resolution: "micromark-util-subtokenize@npm:1.1.0" +"micromark-util-subtokenize@npm:^2.0.0": + version: 2.0.1 + resolution: "micromark-util-subtokenize@npm:2.0.1" dependencies: - micromark-util-chunked: "npm:^1.0.0" - micromark-util-symbol: "npm:^1.0.0" - micromark-util-types: "npm:^1.0.0" - uvu: "npm:^0.5.0" - checksum: 10/075a1db6ea586d65827d3eead33dbfc520c4e43659c93fcd8fd82f44a7b75cfe61dcde967a3dfcc2ffd999347440ba5aa6698e65a04f3fc627e13e9f12a1a910 + devlop: "npm:^1.0.0" + micromark-util-chunked: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10/8e1cae8859bcc3eed54c0dc896d9c2141c990299696455124205ce538e084caeaafcbe0d459a39b81cd45e761ff874d773dbf235ab6825914190701a15226789 languageName: node linkType: hard -"micromark-util-symbol@npm:^1.0.0": - version: 1.1.0 - resolution: "micromark-util-symbol@npm:1.1.0" - checksum: 10/a26b6b1efd77a715a4d9bbe0a5338eaf3d04ea5e85733e34fee56dfeabf64495c0afc5438fe5220316884cd3a5eae1f17768e0ff4e117827ea4a653897466f86 +"micromark-util-symbol@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-symbol@npm:2.0.0" + checksum: 10/8c662644c326b384f02a5269974d843d400930cf6f5d6a8e6db1743fc8933f5ecc125b4203ad4ebca25447f5d23eb7e5bf1f75af34570c3fdd925cb618752fcd languageName: node linkType: hard -"micromark-util-types@npm:^1.0.0, micromark-util-types@npm:^1.0.1": - version: 1.1.0 - resolution: "micromark-util-types@npm:1.1.0" - checksum: 10/287ac5de4a3802bb6f6c3842197c294997a488db1c0486e03c7a8e674d9eb7720c17dda1bcb814814b8343b338c4826fcbc0555f3e75463712a60dcdb53a028e +"micromark-util-types@npm:^2.0.0": + version: 2.0.0 + resolution: "micromark-util-types@npm:2.0.0" + checksum: 10/b88e0eefd4b7c8d86b54dbf4ed0094ef56a3b0c7774d040bd5c8146b8e4e05b1026bbf1cd9308c8fcd05ecdc0784507680c8cee9888a4d3c550e6e574f7aef62 languageName: node linkType: hard -"micromark@npm:^3.0.0": - version: 3.2.0 - resolution: "micromark@npm:3.2.0" +"micromark@npm:^4.0.0": + version: 4.0.0 + resolution: "micromark@npm:4.0.0" dependencies: "@types/debug": "npm:^4.0.0" debug: "npm:^4.0.0" decode-named-character-reference: "npm:^1.0.0" - micromark-core-commonmark: "npm:^1.0.1" - micromark-factory-space: "npm:^1.0.0" - micromark-util-character: "npm:^1.0.0" - micromark-util-chunked: "npm:^1.0.0" - micromark-util-combine-extensions: "npm:^1.0.0" - micromark-util-decode-numeric-character-reference: "npm:^1.0.0" - micromark-util-encode: "npm:^1.0.0" - micromark-util-normalize-identifier: "npm:^1.0.0" - micromark-util-resolve-all: "npm:^1.0.0" - micromark-util-sanitize-uri: "npm:^1.0.0" - micromark-util-subtokenize: "npm:^1.0.0" - micromark-util-symbol: "npm:^1.0.0" - micromark-util-types: "npm:^1.0.1" - uvu: "npm:^0.5.0" - checksum: 10/560a4a501efc3859d622461aaa9345fb95b99a2f34d3d3f2a775ab04de1dd857cb0f642083a6b28ab01bd817f5f0741a1be9857fd702f45e04a3752927a66719 + devlop: "npm:^1.0.0" + micromark-core-commonmark: "npm:^2.0.0" + micromark-factory-space: "npm:^2.0.0" + micromark-util-character: "npm:^2.0.0" + micromark-util-chunked: "npm:^2.0.0" + micromark-util-combine-extensions: "npm:^2.0.0" + micromark-util-decode-numeric-character-reference: "npm:^2.0.0" + micromark-util-encode: "npm:^2.0.0" + micromark-util-normalize-identifier: "npm:^2.0.0" + micromark-util-resolve-all: "npm:^2.0.0" + micromark-util-sanitize-uri: "npm:^2.0.0" + micromark-util-subtokenize: "npm:^2.0.0" + micromark-util-symbol: "npm:^2.0.0" + micromark-util-types: "npm:^2.0.0" + checksum: 10/a697c1c0c169077f5d5def9af26985baea9d4375395dcb974a96f63761d382b455d4595a60e856c83e653b1272a732e85128d992511d6dc938d61a35bdf98c99 languageName: node linkType: hard @@ -8574,16 +8727,7 @@ __metadata: languageName: node linkType: hard -"minimatch@npm:9.0.3, minimatch@npm:^9.0.0, minimatch@npm:^9.0.1, minimatch@npm:^9.0.3": - version: 9.0.3 - resolution: "minimatch@npm:9.0.3" - dependencies: - brace-expansion: "npm:^2.0.1" - checksum: 10/c81b47d28153e77521877649f4bab48348d10938df9e8147a58111fe00ef89559a2938de9f6632910c4f7bf7bb5cd81191a546167e58d357f0cfb1e18cecc1c5 - languageName: node - linkType: hard - -"minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": +"minimatch@npm:^3.0.4, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": version: 3.1.2 resolution: "minimatch@npm:3.1.2" dependencies: @@ -8619,6 +8763,15 @@ __metadata: languageName: node linkType: hard +"minimatch@npm:^9.0.0, minimatch@npm:^9.0.3, minimatch@npm:^9.0.4": + version: 9.0.5 + resolution: "minimatch@npm:9.0.5" + dependencies: + brace-expansion: "npm:^2.0.1" + checksum: 10/dd6a8927b063aca6d910b119e1f2df6d2ce7d36eab91de83167dd136bb85e1ebff97b0d3de1cb08bd1f7e018ca170b4962479fefab5b2a69e2ae12cb2edc8348 + languageName: node + linkType: hard + "minimist-options@npm:4.1.0": version: 4.1.0 resolution: "minimist-options@npm:4.1.0" @@ -8736,10 +8889,10 @@ __metadata: languageName: node linkType: hard -"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3": - version: 7.0.4 - resolution: "minipass@npm:7.0.4" - checksum: 10/e864bd02ceb5e0707696d58f7ce3a0b89233f0d686ef0d447a66db705c0846a8dc6f34865cd85256c1472ff623665f616b90b8ff58058b2ad996c5de747d2d18 +"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.1.2": + version: 7.1.2 + resolution: "minipass@npm:7.1.2" + checksum: 10/c25f0ee8196d8e6036661104bacd743785b2599a21de5c516b32b3fa2b83113ac89a2358465bc04956baab37ffb956ae43be679b2262bf7be15fce467ccd7950 languageName: node linkType: hard @@ -9081,10 +9234,11 @@ __metadata: languageName: node linkType: hard -"npm-check-updates@npm:^16.14.15": - version: 16.14.15 - resolution: "npm-check-updates@npm:16.14.15" +"npm-check-updates@npm:^16.14.20": + version: 16.14.20 + resolution: "npm-check-updates@npm:16.14.20" dependencies: + "@types/semver-utils": "npm:^1.1.1" chalk: "npm:^5.3.0" cli-table3: "npm:^0.6.3" commander: "npm:^10.0.1" @@ -9120,7 +9274,7 @@ __metadata: bin: ncu: build/src/bin/cli.js npm-check-updates: build/src/bin/cli.js - checksum: 10/b3f79db9ccc865a1f13bf96ff26601e4488a2abfbdeb4dff2317390b16daba4c45a92479796b0d3dc57f67de78bc97c777a05307fc10bfab05371eef824dc58b + checksum: 10/ef865311c002f75c1dd2e1df7da092bf0f7c7d7d9d3f2426e26b512c50d5a50cef5bfacce5b731d9fc080120952d3ea0ee8a6165c77196a89f1bf7f4c0250434 languageName: node linkType: hard @@ -9166,39 +9320,39 @@ __metadata: languageName: node linkType: hard -"npm-package-json-lint-config-default@npm:^6.0.0": - version: 6.0.0 - resolution: "npm-package-json-lint-config-default@npm:6.0.0" +"npm-package-json-lint-config-default@npm:^7.0.1": + version: 7.0.1 + resolution: "npm-package-json-lint-config-default@npm:7.0.1" peerDependencies: - npm-package-json-lint: ^7.0.0 - checksum: 10/828ae9e50c4b51d406a64dde39a2b80c8683bd0164e8ccf553098e8af9cf2dc64678b2c068e7693c94652320e2f86738269f56897df1c7e36c50a2c244f7b58f + npm-package-json-lint: ^8.0.0 + checksum: 10/5482a38cdc4e45dcce7cb80ccee76430211929d525397f5953928b8c7cf01f167d595cd7cd91b31dcaac75ea1ea95504c6f6eab04d1512bf728f7cd22ac26a48 languageName: node linkType: hard -"npm-package-json-lint@npm:^7.1.0": - version: 7.1.0 - resolution: "npm-package-json-lint@npm:7.1.0" +"npm-package-json-lint@npm:^8.0.0": + version: 8.0.0 + resolution: "npm-package-json-lint@npm:8.0.0" dependencies: ajv: "npm:^6.12.6" ajv-errors: "npm:^1.0.1" chalk: "npm:^4.1.2" - cosmiconfig: "npm:^8.2.0" + cosmiconfig: "npm:^8.3.6" debug: "npm:^4.3.4" globby: "npm:^11.1.0" - ignore: "npm:^5.2.4" + ignore: "npm:^5.3.1" is-plain-obj: "npm:^3.0.0" - jsonc-parser: "npm:^3.2.0" + jsonc-parser: "npm:^3.2.1" log-symbols: "npm:^4.1.0" meow: "npm:^9.0.0" plur: "npm:^4.0.0" - semver: "npm:^7.5.4" + semver: "npm:^7.6.2" slash: "npm:^3.0.0" strip-json-comments: "npm:^3.1.1" - type-fest: "npm:^4.3.3" - validate-npm-package-name: "npm:^5.0.0" + type-fest: "npm:^4.20.0" + validate-npm-package-name: "npm:^5.0.1" bin: npmPkgJsonLint: dist/cli.js - checksum: 10/92a22cabec73d12cb62ac0ef71723a080f0d7c43d624f890afdc2b5b0a80dc9ae732e9042d681f42b6a17bfb910bb7052143bdb5212dae2d3c5aa94f7c4a7a06 + checksum: 10/a60ff54288b66c7cc6a750a47ab37fd619d6747933a406daf92c95bc1efcf24300aa324c52ab34c9eeee019e05d31a9ee7406f745bf801d9000efd9929abe9d0 languageName: node linkType: hard @@ -9566,6 +9720,13 @@ __metadata: languageName: node linkType: hard +"package-json-from-dist@npm:^1.0.0": + version: 1.0.0 + resolution: "package-json-from-dist@npm:1.0.0" + checksum: 10/ac706ec856a5a03f5261e4e48fa974f24feb044d51f84f8332e2af0af04fbdbdd5bbbfb9cbbe354190409bc8307c83a9e38c6672c3c8855f709afb0006a009ea + languageName: node + linkType: hard + "package-json@npm:^8.1.0": version: 8.1.1 resolution: "package-json@npm:8.1.1" @@ -9629,6 +9790,22 @@ __metadata: languageName: node linkType: hard +"parse-entities@npm:^4.0.0": + version: 4.0.1 + resolution: "parse-entities@npm:4.0.1" + dependencies: + "@types/unist": "npm:^2.0.0" + character-entities: "npm:^2.0.0" + character-entities-legacy: "npm:^3.0.0" + character-reference-invalid: "npm:^2.0.0" + decode-named-character-reference: "npm:^1.0.0" + is-alphanumerical: "npm:^2.0.0" + is-decimal: "npm:^2.0.0" + is-hexadecimal: "npm:^2.0.0" + checksum: 10/71314312d2482422fcf0b6675e020643bab424b11f64c654b7843652cae03842a7802eda1fed194ec435debb5db47a33513eb6b1176888e9e998a0368f01f5c8 + languageName: node + linkType: hard + "parse-git-config@npm:^3.0.0": version: 3.0.0 resolution: "parse-git-config@npm:3.0.0" @@ -9742,13 +9919,13 @@ __metadata: languageName: node linkType: hard -"path-scurry@npm:^1.10.1, path-scurry@npm:^1.6.1": - version: 1.10.1 - resolution: "path-scurry@npm:1.10.1" +"path-scurry@npm:^1.11.1, path-scurry@npm:^1.6.1": + version: 1.11.1 + resolution: "path-scurry@npm:1.11.1" dependencies: - lru-cache: "npm:^9.1.1 || ^10.0.0" + lru-cache: "npm:^10.2.0" minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0" - checksum: 10/eebfb8304fef1d4f7e1486df987e4fd77413de4fce16508dea69fcf8eb318c09a6b15a7a2f4c22877cec1cb7ecbd3071d18ca9de79eeece0df874a00f1f0bdc8 + checksum: 10/5e8845c159261adda6f09814d7725683257fcc85a18f329880ab4d7cc1d12830967eae5d5894e453f341710d5484b8fdbbd4d75181b4d6e1eb2f4dc7aeadc434 languageName: node linkType: hard @@ -9787,10 +9964,10 @@ __metadata: languageName: node linkType: hard -"picocolors@npm:^1.0.0": - version: 1.0.0 - resolution: "picocolors@npm:1.0.0" - checksum: 10/a2e8092dd86c8396bdba9f2b5481032848525b3dc295ce9b57896f931e63fc16f79805144321f72976383fc249584672a75cc18d6777c6b757603f372f745981 +"picocolors@npm:^1.0.0, picocolors@npm:^1.0.1": + version: 1.0.1 + resolution: "picocolors@npm:1.0.1" + checksum: 10/fa68166d1f56009fc02a34cdfd112b0dd3cf1ef57667ac57281f714065558c01828cdf4f18600ad6851cbe0093952ed0660b1e0156bddf2184b6aaf5817553a5 languageName: node linkType: hard @@ -9942,12 +10119,12 @@ __metadata: languageName: node linkType: hard -"prettier@npm:^3.2.5": - version: 3.2.5 - resolution: "prettier@npm:3.2.5" +"prettier@npm:^3.3.2": + version: 3.3.2 + resolution: "prettier@npm:3.3.2" bin: prettier: bin/prettier.cjs - checksum: 10/d509f9da0b70e8cacc561a1911c0d99ec75117faed27b95cc8534cb2349667dee6351b0ca83fa9d5703f14127faa52b798de40f5705f02d843da133fc3aa416a + checksum: 10/83214e154afa5aa9b664c2506640212323eb1376b13379b2413dc351b7de0687629dca3f00ff2ec895ebd7e3a2adb7d7e231b6c77606e2358137f2150807405b languageName: node linkType: hard @@ -10027,16 +10204,16 @@ __metadata: languageName: node linkType: hard -"publint@npm:^0.2.7": - version: 0.2.7 - resolution: "publint@npm:0.2.7" +"publint@npm:^0.2.8": + version: 0.2.8 + resolution: "publint@npm:0.2.8" dependencies: npm-packlist: "npm:^5.1.3" - picocolors: "npm:^1.0.0" + picocolors: "npm:^1.0.1" sade: "npm:^1.8.1" bin: publint: lib/cli.js - checksum: 10/03cb5ac48429328fda7e50c932477d0959bf8aeb86ab692b70045b4d5f4280cf4910e35d73182d3c1e5870a99820a2610f8e44f91b93de9f0e94d79a4c55ff03 + checksum: 10/48f52b4688f4814638d447a92dd359bc1f16a51fd96a5b3c42131ba0cc483b904a4aa1850b1b97ed5355f1f562e872dee235adc1053db3cd76cb678dc51c1ff8 languageName: node linkType: hard @@ -10100,6 +10277,13 @@ __metadata: languageName: node linkType: hard +"quotation@npm:^2.0.0": + version: 2.0.3 + resolution: "quotation@npm:2.0.3" + checksum: 10/73900a34775a868c8eaa2a4fa8f3ef907f9b5b723eb33eba570fefe14fae44f9015f8e8adf6ea5853c90fd76504b699f6235b6b2e7c0bf13f5f641c8e5d785f7 + languageName: node + linkType: hard + "rc-config-loader@npm:^4.1.3": version: 4.1.3 resolution: "rc-config-loader@npm:4.1.3" @@ -10250,10 +10434,10 @@ __metadata: languageName: node linkType: hard -"reflect-metadata@npm:^0.2.1": - version: 0.2.1 - resolution: "reflect-metadata@npm:0.2.1" - checksum: 10/394b293bd4a538b644ed0e8730c5aeb1e08e78972c915b3d2cf3b302241952cfee8f8bd8a0fdf7d8c7fa78d31d0585489061624692e2577d767abd120cad968c +"reflect-metadata@npm:^0.2.2": + version: 0.2.2 + resolution: "reflect-metadata@npm:0.2.2" + checksum: 10/1c93f9ac790fea1c852fde80c91b2760420069f4862f28e6fae0c00c6937a56508716b0ed2419ab02869dd488d123c4ab92d062ae84e8739ea7417fae10c4745 languageName: node linkType: hard @@ -10347,18 +10531,17 @@ __metadata: languageName: node linkType: hard -"remark-lint-blockquote-indentation@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-blockquote-indentation@npm:3.1.2" +"remark-lint-blockquote-indentation@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-blockquote-indentation@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" + "@types/mdast": "npm:^4.0.0" + mdast-util-phrasing: "npm:^4.0.0" pluralize: "npm:^8.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/2ef8644bc192868f960cd3020472f914a0b90454920a8d95ff5e621cc0a59c8fd31c09adb46d61568f494641269957c6907c9aaeb94f554f1f7b718468eb41ee + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/226f03f452c477f1f4202553b896f96cb7e3901630eb071ebdc4e8023eff0ea85baecc3c0842454efcd451ee3078f60eeeda4b674be1917dab52531df4b130f3 languageName: node linkType: hard @@ -10374,17 +10557,17 @@ __metadata: languageName: node linkType: hard -"remark-lint-code-block-style@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-code-block-style@npm:3.1.2" +"remark-lint-code-block-style@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-code-block-style@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/7ed8c5d954d8d70b21537da547f59706139685e3a83d2ac905541b1d4141a7cf5ae7af8f2451e09165a197b5997ce648b7741e41e8368f928d93de86a772c54c + "@types/mdast": "npm:^4.0.0" + mdast-util-phrasing: "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/8bb15c71ff7cab2ff65db7a70170b9f15912527dca7ffa166fd024113882cec7e38d4ba136e2099fd4ec41ed0a5e071d605bb9c73e356a0e20f18b2ceafc22b2 languageName: node linkType: hard @@ -10400,16 +10583,15 @@ __metadata: languageName: node linkType: hard -"remark-lint-definition-case@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-definition-case@npm:3.1.2" +"remark-lint-definition-case@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-definition-case@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/b9cf3544080a98159ca34c8a0d57915daef99c88db53dc1320e3d12c42f8b32332e3feb3d01a4e03cbb15e59ad7f6991d8d373456a8dd64e4f613467a09d4757 + "@types/mdast": "npm:^4.0.0" + mdast-util-phrasing: "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/624f74badbdee0e8d1370be5cebe240b5f24fabde34321938f1b8b7244f669916eeffde63b603df0a93e2813928c7871d1e304606f3650ae3902c05302a17c1c languageName: node linkType: hard @@ -10425,16 +10607,17 @@ __metadata: languageName: node linkType: hard -"remark-lint-definition-spacing@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-definition-spacing@npm:3.1.2" +"remark-lint-definition-spacing@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-definition-spacing@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/8288ee7ec063225a9afbe739a45317c9a7fdccab3c54e5ce535ccb450176a0826ada73abaa58b1e11ba81716cc8dd1b40888ee690baeb953cdc5534710ee51f9 + "@types/mdast": "npm:^4.0.0" + longest-streak: "npm:^3.0.0" + mdast-util-phrasing: "npm:^4.0.0" + pluralize: "npm:^8.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/b826fd8c007c9d899aa80230c2ef1acd539aa5b2874d4dccf0761c06312d92dbd899c15d61433f73db811cf7eb4314ac9ff9e3cc8fe2458e50227c1e5ee9c434 languageName: node linkType: hard @@ -10450,16 +10633,16 @@ __metadata: languageName: node linkType: hard -"remark-lint-emphasis-marker@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-emphasis-marker@npm:3.1.2" +"remark-lint-emphasis-marker@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-emphasis-marker@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/5ae5ef5d65211de31fab243c40bd52f35d4effd3107bfadf4882aa6431b773dcd42daf03f79ea5d032a30f0d4f926de2f1a92f2423f8a4bf270847336f89c642 + "@types/mdast": "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/804321842f22d2328c8f10c99607b3f0ddc6a6627a9d7d5aed699c7d40d1a9d1646f8d8d8ff2608c91586e129303b708e22a76d2a45558046037e4f8957c1c10 languageName: node linkType: hard @@ -10475,17 +10658,17 @@ __metadata: languageName: node linkType: hard -"remark-lint-fenced-code-flag@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-fenced-code-flag@npm:3.1.2" +"remark-lint-fenced-code-flag@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-fenced-code-flag@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/73238749d89efcde335f51bc38e97ec5fddb575d350b77649d71baeca9243c891288bf9f5d44bf51730cd5a7ae33d3625353f9cbe629385940f77a428f9026d7 + "@types/mdast": "npm:^4.0.0" + mdast-util-phrasing: "npm:^4.0.0" + quotation: "npm:^2.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/8051ec012e4f05087285d4bf5663c618389374e88bc9bb5f2b7fe3411130c9631f95bba2e167769ce8f2c1e34292a4ddf2736fc59479ad6cb6b7fcfabd79c929 languageName: node linkType: hard @@ -10501,16 +10684,17 @@ __metadata: languageName: node linkType: hard -"remark-lint-fenced-code-marker@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-fenced-code-marker@npm:3.1.2" +"remark-lint-fenced-code-marker@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-fenced-code-marker@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/25a43efea039c3cfea65101e363c9e8ac2e7497c7b0f5e2b1315b66ebb6021576f40f45c8d96997a7d5f8aa5a865a95312dc617d1145fc18aa409452c081e340 + "@types/mdast": "npm:^4.0.0" + mdast-util-phrasing: "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/f4fad9fa02f51cbdcea992bd9a609d5a7dae540f17308676832d124f9ea1c7038d9e7fcdc3f0a3047bdf3cfacdc0421137b938a6b01d322e19aa89749000b872 languageName: node linkType: hard @@ -10523,14 +10707,14 @@ __metadata: languageName: node linkType: hard -"remark-lint-file-extension@npm:^2.0.0": - version: 2.1.2 - resolution: "remark-lint-file-extension@npm:2.1.2" +"remark-lint-file-extension@npm:^3.0.0": + version: 3.0.0 + resolution: "remark-lint-file-extension@npm:3.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - checksum: 10/8d9afd4d2cff7ba02656b44381f14dc0819e9788b8b3739eaf7035104a3d44bbc23ac41af07e41c24aafa1a9673643f84b0d2b472cfbfdb2e4263271af925079 + "@types/mdast": "npm:^4.0.0" + quotation: "npm:^2.0.0" + unified-lint-rule: "npm:^3.0.0" + checksum: 10/e53860eb765864ec6b22e44e1f4b7ee1899f0de627f2ef57fbbec5a9f14135b4d6298d13472e5d5de3824f3771329e497cca37eae81c829f5a0f338254f6ae4e languageName: node linkType: hard @@ -10546,17 +10730,19 @@ __metadata: languageName: node linkType: hard -"remark-lint-final-definition@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-final-definition@npm:3.1.2" +"remark-lint-final-definition@npm:^4.0.0": + version: 4.0.1 + resolution: "remark-lint-final-definition@npm:4.0.1" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/36e66179a5e9fac23b8f0d0a729bbd0b787ecd924ca3d8b0b089b5ef51a1b8621458baef0017f91fd2d91513207cf457129c6d76834ea8474209b1dbc6d35a42 + "@types/mdast": "npm:^4.0.0" + devlop: "npm:^1.0.0" + mdast-util-mdx: "npm:^3.0.0" + mdast-util-phrasing: "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/90c9b23d2c124b2045181f8e8f5b29808ebf05196804197bbc5731324bcf32abc815649e70ec57ab2dc1cb4761779ab5d47a02e65788a56390c9d859d18b9388 languageName: node linkType: hard @@ -10572,17 +10758,15 @@ __metadata: languageName: node linkType: hard -"remark-lint-hard-break-spaces@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-hard-break-spaces@npm:3.1.2" +"remark-lint-hard-break-spaces@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-hard-break-spaces@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/a7984feac1c310c4a6799d6d1f861ddf9078568e4a078913837082d85d60d019bd6230653e7e7aab238f402cfca41f34dc6e35f7a6441c2c97faa49fb9a48f13 + "@types/mdast": "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit: "npm:^5.0.0" + checksum: 10/3af9df1719267863e61eb86f1cc0a5f7ed2845c576d44f848e376622b5c682f5bbd16fbd590b0375c98b942966ff63066bb9c34cc871891adfd3b66be51b6b8a languageName: node linkType: hard @@ -10597,16 +10781,17 @@ __metadata: languageName: node linkType: hard -"remark-lint-heading-increment@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-heading-increment@npm:3.1.2" +"remark-lint-heading-increment@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-heading-increment@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/26c350e7d9bc4c5aa3df76c850d91377158bbafa0ab9a8b546c34f49538223ab1121ddcd416466a024333dee79f1e03f761c5fa108b247561543f32256442e74 + "@types/mdast": "npm:^4.0.0" + devlop: "npm:^1.0.0" + mdast-util-mdx: "npm:^3.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/898f45cadb3248e21af4a60cf87d6420f67efe3f24dae0b225b2f4eefcb9befd761977bb052643a5cf67d4cc2eafb28c047e15d86eb7f40f5c7625121b6321ed languageName: node linkType: hard @@ -10622,17 +10807,18 @@ __metadata: languageName: node linkType: hard -"remark-lint-heading-style@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-heading-style@npm:3.1.2" +"remark-lint-heading-style@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-heading-style@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - mdast-util-heading-style: "npm:^2.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/0b915ab10e4fb5bf62133c178822d1ec949dd94cce9c4fef348b7bb1e2bdd5eb2e4e7ba4fbefae6c8e5448355204c68c7f23255a01acd23d8a8faffe9dba35b4 + "@types/mdast": "npm:^4.0.0" + mdast-util-heading-style: "npm:^3.0.0" + mdast-util-phrasing: "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/a4b1ec08ebd372e7d60b9893186bb6e25f42f981946adbd272ef71d2982a35b49379f698fa5bcc7c16cada0f36350130a88b238ac0ef8444f8a6f0061102d6f7 languageName: node linkType: hard @@ -10649,17 +10835,16 @@ __metadata: languageName: node linkType: hard -"remark-lint-link-title-style@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-link-title-style@npm:3.1.2" +"remark-lint-link-title-style@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-link-title-style@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - vfile-location: "npm:^4.0.0" - checksum: 10/4d01d4c2a210224f0f9d931438b35f86f86a338197c0482dfc4c460539eaa2754b3f7c5cb3cbda20ab778f34c455a2a4412b63ab4012712ea98d6e857821ce19 + "@types/mdast": "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/5ae522ef45a96434c0b02fa46800a5b0e1b298318757af7a5cd4ddf87278a9813ea0711896fb96ea16fb5c548949ad7e1d55a781b794d73655567271e245f5c0 languageName: node linkType: hard @@ -10676,17 +10861,18 @@ __metadata: languageName: node linkType: hard -"remark-lint-list-item-content-indent@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-list-item-content-indent@npm:3.1.2" +"remark-lint-list-item-content-indent@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-list-item-content-indent@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" + "@types/mdast": "npm:^4.0.0" + mdast-util-phrasing: "npm:^4.0.0" pluralize: "npm:^8.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/b3c73447c7d4aea54f341afc8b61c547bb242d8f77d15774b17fe4f8efd2bafbf48e397f19ab63eecad41998a127c5bcf0f86ad9030eefdf89f2b1f3c13ad82a + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/295b349fb38fa9514fb4f6d8b63297156f73c7000b3b30ac55aae96d08342defc6c73234dd29c64c8a1d00ef6286de5f6d62342b111825329918df8bfced7ddd languageName: node linkType: hard @@ -10703,18 +10889,17 @@ __metadata: languageName: node linkType: hard -"remark-lint-list-item-indent@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-list-item-indent@npm:3.1.2" +"remark-lint-list-item-indent@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-list-item-indent@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" + "@types/mdast": "npm:^4.0.0" + mdast-util-phrasing: "npm:^4.0.0" pluralize: "npm:^8.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/59812583c5f2d8701fa8d5a314198d82623df9e44fc8b53e99e2225215a9747dcd4c62169eec12f5b48c36129dc8efb03ad4e37a7eccb94a3f40816a6071a490 + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/68765ebb7352c21fd3f9082e80ca2758d949ae9416aad80262cb4770794e6a3fb092d2698d3645db97f66e70760abe72bbaedcc1d86c85c7c6006dbcaa95e851 languageName: node linkType: hard @@ -10730,17 +10915,18 @@ __metadata: languageName: node linkType: hard -"remark-lint-list-item-spacing@npm:^4.0.0": - version: 4.1.2 - resolution: "remark-lint-list-item-spacing@npm:4.1.2" +"remark-lint-list-item-spacing@npm:^5.0.0": + version: 5.0.0 + resolution: "remark-lint-list-item-spacing@npm:5.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/534c1464f5284fc2eca1667219400a41c20382846d415ea2cb936aa0e307922d4cbff0d7a0113613c51ddb40a60a84dbaffd3163355abc9f1624b21adf36d046 + "@types/mdast": "npm:^4.0.0" + mdast-util-phrasing: "npm:^4.0.0" + pluralize: "npm:^8.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/ddbcc727b3c07be39310117b93ee756ae1dea8f3bd835eb5bbc0f60819c39facaa9368bda9a69d6af1179e9b93fc4500f2fedf7c863aa0e3cb2cd836b9136b71 languageName: node linkType: hard @@ -10756,17 +10942,17 @@ __metadata: languageName: node linkType: hard -"remark-lint-maximum-heading-length@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-maximum-heading-length@npm:3.1.2" +"remark-lint-maximum-heading-length@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-maximum-heading-length@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - mdast-util-to-string: "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/3f346a8d1ec427be0d89cce31dc4406c661cf30fd72c56fff2add102a68fe8a93a157d90ba79a70725a3e1d13fa8e1b0fd62f90ecb9c17cc8984d1f67e5ba851 + "@types/mdast": "npm:^4.0.0" + mdast-util-mdx: "npm:^3.0.0" + mdast-util-to-string: "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/50a9ff642d11decbccd49dfdc0455495790bb7244476bd110ce36a7f0340309d8143e06ded5cf9f843d4d2932af2fb67d57ae832e96b3a11084f3c26353c5191 languageName: node linkType: hard @@ -10782,17 +10968,17 @@ __metadata: languageName: node linkType: hard -"remark-lint-maximum-line-length@npm:^3.0.0, remark-lint-maximum-line-length@npm:^3.1.3": - version: 3.1.3 - resolution: "remark-lint-maximum-line-length@npm:3.1.3" +"remark-lint-maximum-line-length@npm:^4.0.0, remark-lint-maximum-line-length@npm:^4.0.1": + version: 4.0.1 + resolution: "remark-lint-maximum-line-length@npm:4.0.1" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/f5ca7d5408bd148ae8ce7c7268bd5b45e631e7285c55916c626e724abf6c3044317a066bf677eb0b65652470fb6d6c0af837e7bcb3a53546e8d55cfc1d2c4bf1 + "@types/mdast": "npm:^4.0.0" + mdast-util-mdx: "npm:^3.0.0" + pluralize: "npm:^8.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit: "npm:^5.0.0" + checksum: 10/c4e251f74f46386540ba045580f7815202b736a2a06f6806356b0eadc501a27e695dc359868bc68040f64d41f5b7ef41d507882520c843ad11edd5830cb80c91 languageName: node linkType: hard @@ -10822,18 +11008,20 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-blockquote-without-marker@npm:^5.0.0": - version: 5.1.2 - resolution: "remark-lint-no-blockquote-without-marker@npm:5.1.2" +"remark-lint-no-blockquote-without-marker@npm:^6.0.0": + version: 6.0.0 + resolution: "remark-lint-no-blockquote-without-marker@npm:6.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - vfile-location: "npm:^4.0.0" - checksum: 10/b39efae5929af3dd9038037191950fee4767ec5701f1ba11b2c64c9b65b773d0369741a02fd761642a4a9f51335f0cd874da9714b37edaf59239408e81251278 + "@types/mdast": "npm:^4.0.0" + devlop: "npm:^1.0.0" + mdast-util-directive: "npm:^3.0.0" + mdast-util-phrasing: "npm:^4.0.0" + pluralize: "npm:^8.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-location: "npm:^5.0.0" + checksum: 10/2505913f3c0808a0e16bf57fc9f34f8684b0eaae2528c4d36f96c6469e8af13d69e08d24c890d53f66fe501c70317e8be78422f126f16a15491c904db96c1019 languageName: node linkType: hard @@ -10850,19 +11038,19 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-consecutive-blank-lines@npm:^4.0.0": - version: 4.1.3 - resolution: "remark-lint-no-consecutive-blank-lines@npm:4.1.3" +"remark-lint-no-consecutive-blank-lines@npm:^5.0.0": + version: 5.0.0 + resolution: "remark-lint-no-consecutive-blank-lines@npm:5.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - "@types/unist": "npm:^2.0.0" + "@types/mdast": "npm:^4.0.0" + mdast-util-directive: "npm:^3.0.0" + mdast-util-mdx: "npm:^3.0.0" + mdast-util-phrasing: "npm:^4.0.0" pluralize: "npm:^8.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/0e627f3a5ee23dc0b933571ab8956d8c6e88006c8bbe95f18d6c8651e2560cd2c8e441bf80d013b3fbf85a5f5356355cfbe3639308af4d5f383bd6a22fe481a4 + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/9af7a88d48fa1480a0abcfef2744e2f3158fc808369c7e68df713566c6b5bc461fe5d9fad90e65fc7a888f56ca35cb3667986595faff145b0bd4b1155f6dc51d languageName: node linkType: hard @@ -10880,19 +11068,18 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-duplicate-headings@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-no-duplicate-headings@npm:3.1.2" +"remark-lint-no-duplicate-headings@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-no-duplicate-headings@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - mdast-util-to-string: "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-stringify-position: "npm:^3.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/e3c1b464a99d1272c107ed98a9199fd38ce07163bb23ccee4b6d05630945affe03081b83c725336aa62f042b5d06d72baf77fadbb434e34607fe4296388b8d8b + "@types/mdast": "npm:^4.0.0" + devlop: "npm:^1.0.0" + mdast-util-mdx: "npm:^3.0.0" + mdast-util-to-string: "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/5655b816ac736be3b0766c4732a87f541d30b959bbaf48cc0507ce92c51842840c7e1f8c435bcae20bd7a03fc1630d6d86f99e09f63f8df5c11775f950cab68e languageName: node linkType: hard @@ -10907,16 +11094,15 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-emphasis-as-heading@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-no-emphasis-as-heading@npm:3.1.2" +"remark-lint-no-emphasis-as-heading@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-no-emphasis-as-heading@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/44e8dace502b167eb60d24c5b843723d8fcac7138cc86908698d541ab484a2991f9b606396b2872bde18a149206123d6fa347bb409eb5b59cc7aa7f2e7d6d55e + "@types/mdast": "npm:^4.0.0" + mdast-util-phrasing: "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/9cb3a59c2d4e8a9a0ea8f88baad758c48b47917f6379f48c62d055031f15b6acb009d934b99e85689312498a4f93d9508ecbb23ccbb53d24070f4321ec492b4e languageName: node linkType: hard @@ -10929,14 +11115,13 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-file-name-articles@npm:^2.0.0": - version: 2.1.2 - resolution: "remark-lint-no-file-name-articles@npm:2.1.2" +"remark-lint-no-file-name-articles@npm:^3.0.0": + version: 3.0.0 + resolution: "remark-lint-no-file-name-articles@npm:3.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - checksum: 10/75035008b215427c6cd10034bec4e3b4eac7daa5391e260c9ef99f9fb3806490c5a5bafce2b9a5a9bf2d5fb994867c29492d48a516907b2366af497e16d5596d + "@types/mdast": "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + checksum: 10/d844a186991fdce6d19cbd11b7b42b60bcd36ee5ae1c85b56afe8776014adf4538cc0391e10b23807bd47397528f7c8ec7c4d418c067fdd763e329de941d1d77 languageName: node linkType: hard @@ -10949,14 +11134,13 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-file-name-consecutive-dashes@npm:^2.0.0": - version: 2.1.2 - resolution: "remark-lint-no-file-name-consecutive-dashes@npm:2.1.2" +"remark-lint-no-file-name-consecutive-dashes@npm:^3.0.0": + version: 3.0.0 + resolution: "remark-lint-no-file-name-consecutive-dashes@npm:3.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - checksum: 10/2bad773603431282cb2d72fcdc1a8c9cffac48bd15f23cce3745b56f9d889724ff21c38622be324fe294deb7a09aaa2fe132db6fc2308cdeeecfb59ea5c98276 + "@types/mdast": "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + checksum: 10/6e09873a27c378ac661e933bc23706c83825374f293a332b93cf59ad2e7b808978ba52d15aa75fc676134726fa60e3b68b98c3395bf36aa9f0b241c36086a7ad languageName: node linkType: hard @@ -10969,14 +11153,13 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-file-name-irregular-characters@npm:^2.0.0": - version: 2.1.2 - resolution: "remark-lint-no-file-name-irregular-characters@npm:2.1.2" +"remark-lint-no-file-name-irregular-characters@npm:^3.0.0": + version: 3.0.0 + resolution: "remark-lint-no-file-name-irregular-characters@npm:3.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - checksum: 10/a772c1b7f597f07c97e168d9a1978ec2333b56d7cac2af49b5412d5430ca59ad4a8d249cf6783d2aaa191dd142ced81568de901b17bd2697c3fe58586b9e4d0c + "@types/mdast": "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + checksum: 10/cefc06a36c35c4877b8331e1ad207ef4f2e5cf15e6631261830808fbca58eec0a57d622d967d0b17808d9d8b5115188f0576ebf5a1c80eef111a77a6683ddf43 languageName: node linkType: hard @@ -10989,14 +11172,13 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-file-name-mixed-case@npm:^2.0.0": - version: 2.1.2 - resolution: "remark-lint-no-file-name-mixed-case@npm:2.1.2" +"remark-lint-no-file-name-mixed-case@npm:^3.0.0": + version: 3.0.0 + resolution: "remark-lint-no-file-name-mixed-case@npm:3.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - checksum: 10/c2a52a72e8e0b56ab6e879e466a70c8090618ac676090ec812139a48558387ab99891b1fc6b8744cd30767c03e517951b816c5093c0c546278e63569099b86b6 + "@types/mdast": "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + checksum: 10/0bb0a440af0c61cb6e7bbf4a056b0f1f2bdc8b2dd14383efb365ab2a08e354ce046fc97686ffcd28fc0ed93ae328ffeb7b252d4c3353300b7b3986ccf6ef4f31 languageName: node linkType: hard @@ -11009,14 +11191,13 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-file-name-outer-dashes@npm:^2.0.0": - version: 2.1.2 - resolution: "remark-lint-no-file-name-outer-dashes@npm:2.1.2" +"remark-lint-no-file-name-outer-dashes@npm:^3.0.0": + version: 3.0.0 + resolution: "remark-lint-no-file-name-outer-dashes@npm:3.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - checksum: 10/26ff1935e3d0b663b9b16b124fa8af4c3abb42c7b90a62efac97458ab69a5fb2b5a0c462863d1df93044cff563e73272b6c42c1eee481c97f745743a6e03b128 + "@types/mdast": "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + checksum: 10/d00358c9a90f6adb098d2801a5c27d544fe6278b394082d13e55e424e6c7ac41a1dbf1121de9b5f14bcc345d8215fad0a386fbbdd5c898855a77a0993b8ede59 languageName: node linkType: hard @@ -11032,17 +11213,16 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-heading-punctuation@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-no-heading-punctuation@npm:3.1.2" +"remark-lint-no-heading-punctuation@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-no-heading-punctuation@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - mdast-util-to-string: "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/9b10af8f03470d246307eef9e0bed6fe71c280a21ca0db1a0aff31ca306936d740c84b2caf7f5da429b14843690f7882de0bbd11b6422b0a1242af588b07ea62 + "@types/mdast": "npm:^4.0.0" + mdast-util-mdx: "npm:^3.0.0" + mdast-util-to-string: "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/b5e39039e3aa7665b291f2a6d9000a4d5c3e3d04339989b20ed09c4ab30fd60a12b8f64df4eb921e54b840770cf962cf719dba7ac6906fc295fb7c73e202737d languageName: node linkType: hard @@ -11058,20 +11238,6 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-inline-padding@npm:^4.0.0": - version: 4.1.2 - resolution: "remark-lint-no-inline-padding@npm:4.1.2" - dependencies: - "@types/mdast": "npm:^3.0.0" - mdast-util-to-string: "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/521de668b6591a254ff9d0046777073b4d874affa9739940e9615b815817c509d95542aabdd685a73e3aee12da44dd5c3ba010c14b3ee24665896267cf50f562 - languageName: node - linkType: hard - "remark-lint-no-literal-urls@npm:^1.0.0": version: 1.0.4 resolution: "remark-lint-no-literal-urls@npm:1.0.4" @@ -11085,18 +11251,17 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-literal-urls@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-no-literal-urls@npm:3.1.2" +"remark-lint-no-literal-urls@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-no-literal-urls@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - mdast-util-to-string: "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/dc0c591d5f3dea246e2d919ab68b9db35ce32fa1d76c45ce240d635b168a52e941adbc85cb54195e5c4ca83109092d9cc1c6fd72c531ab0520f2d50795a584e7 + "@types/mdast": "npm:^4.0.0" + mdast-util-to-string: "npm:^4.0.0" + micromark-util-character: "npm:^2.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/e203946757bec9ca2cd85b2a5dd94687d03c88fae50977804709bef814d1e42f6bb306a9ed3a33d08312819abc2aada537f992d434714519822600140da2bf25 languageName: node linkType: hard @@ -11113,18 +11278,17 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-multiple-toplevel-headings@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-no-multiple-toplevel-headings@npm:3.1.2" +"remark-lint-no-multiple-toplevel-headings@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-no-multiple-toplevel-headings@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-stringify-position: "npm:^3.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/38a9b189eccaf0fd6b9c140583ce23f77ef492256943d136e6eaca403ba59ce0256bcf9607014006fe54600c3fb75fd1b41846eb23b3ef23156578e114d23346 + "@types/mdast": "npm:^4.0.0" + devlop: "npm:^1.0.0" + mdast-util-mdx: "npm:^3.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/b87bf23f3043df7febc99b3fdd454a42a56997f224864e13a8fb4e2a43bf15f8ac6e8b7747259bc5e4e36301659617c9a093a74e3137b12a28ef6b689b89b1cc languageName: node linkType: hard @@ -11139,16 +11303,16 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-shell-dollars@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-no-shell-dollars@npm:3.1.2" +"remark-lint-no-shell-dollars@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-no-shell-dollars@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/73b63342d3b8f4404036fce9c7a23543ebac309935e639e33112ad7b4333fc6b981a51bf5cc37e5b907c70f4040f8295f5b27f0d6a347e5f5de54e51843460ff + "@types/mdast": "npm:^4.0.0" + collapse-white-space: "npm:^2.0.0" + mdast-util-phrasing: "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/834e51f731c574932a3466bd8c4d6b6169afd60e474ac4b1657b4c4882a0954c52f71a1ef6ffba3fad75a06be46cd11ae54c8f5f9b8d2e9d5ee4585eb810c39d languageName: node linkType: hard @@ -11163,16 +11327,14 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-shortcut-reference-image@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-no-shortcut-reference-image@npm:3.1.2" +"remark-lint-no-shortcut-reference-image@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-no-shortcut-reference-image@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/12534d1312ba32bc959db5e6bc660d9bfb8c52c34569ca70ce0fde4d74b3a7ad355a5db6be301d16263c0acac63b0676874ec449cafc631ee90890104294f215 + "@types/mdast": "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/00c2a36c9666ded399d536eb76b3e170cb668de5da6ef830142b3190cbb1c19f51571ab44ad02f751911b17f00a3d434529a63523b65b659ae2148d602ea0b4d languageName: node linkType: hard @@ -11187,16 +11349,14 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-shortcut-reference-link@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-no-shortcut-reference-link@npm:3.1.2" +"remark-lint-no-shortcut-reference-link@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-no-shortcut-reference-link@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/57b76d4d765b5cfea4516ed226312766d6a748b860e330d0cc62404dbe7ff7b99284cd3399ee387d0e65047f7ab9d49819e12ef7accdd4bdd16868c900117705 + "@types/mdast": "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/bd384d8cb1a73e4e62fd8b2ea41559ed337bde95db8939dcb5ce18822441ab018ebabd09f5d1c4bc1395824afad2381bda9d45a8eeb323de589b522e5f65091d languageName: node linkType: hard @@ -11212,17 +11372,19 @@ __metadata: languageName: node linkType: hard -"remark-lint-no-table-indentation@npm:^4.0.0": - version: 4.1.2 - resolution: "remark-lint-no-table-indentation@npm:4.1.2" +"remark-lint-no-table-indentation@npm:^5.0.0": + version: 5.0.0 + resolution: "remark-lint-no-table-indentation@npm:5.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - vfile-location: "npm:^4.0.0" - checksum: 10/40c0cbee18b3d215c4c72378452f740daa4fa608f3487ad37c7ad28b06e12d6e9900546054141d25ff1d27e7ef6d0446d1940a05ede6807dd3180b8b02b1fb1f + "@types/mdast": "npm:^4.0.0" + devlop: "npm:^1.0.0" + mdast-util-phrasing: "npm:^4.0.0" + pluralize: "npm:^8.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-location: "npm:^5.0.0" + checksum: 10/d3dcba40e240363cf7298131bb65dd15f042c313a1d88ba48a6e0c2f74c5710465894fddb036493754d685544ad74829edbc831a97e3a2eae8f39a74e7790ae5 languageName: node linkType: hard @@ -11238,17 +11400,18 @@ __metadata: languageName: node linkType: hard -"remark-lint-ordered-list-marker-style@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-ordered-list-marker-style@npm:3.1.2" +"remark-lint-ordered-list-marker-style@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-ordered-list-marker-style@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/96b839119f45f6894b322476b1bd61167db5da9fbf2de0427cb0cc4225bdafd44c4848af48b8aeddff63bde2baa0e6be9a5bcf12efb1c1e4968902754ef4eec9 + "@types/mdast": "npm:^4.0.0" + mdast-util-phrasing: "npm:^4.0.0" + micromark-util-character: "npm:^2.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/dbe1a2ae41e3749a72ed190fb2f73cfd63030202138643604012fa945b7f318af2c16801258d130db174f9ebf0a95ea2de5c2622cc81f417a4effb2c1a580b2b languageName: node linkType: hard @@ -11264,17 +11427,19 @@ __metadata: languageName: node linkType: hard -"remark-lint-ordered-list-marker-value@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-ordered-list-marker-value@npm:3.1.2" +"remark-lint-ordered-list-marker-value@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-ordered-list-marker-value@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/63308cdb79dc857cdfae5c831045bdf435f84404d5b4180f6e59a3d6c1d12c8b07a4865e46ecbcf301fd14b774ce12cf387f8470c5aab24ff8a88e7c58d00aec + "@types/mdast": "npm:^4.0.0" + devlop: "npm:^1.0.0" + mdast-util-phrasing: "npm:^4.0.0" + micromark-util-character: "npm:^2.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/17b10368fabb64477679b625a16bc00f513127db77e973b996b0c2386909e2436755122d6e1c826bd9707ff133890dfa0ee497f54cb089a3b98468f93222d5f2 languageName: node linkType: hard @@ -11290,16 +11455,17 @@ __metadata: languageName: node linkType: hard -"remark-lint-rule-style@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-rule-style@npm:3.1.2" +"remark-lint-rule-style@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-rule-style@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/87dc8fdec2e91c210cc281b911b67ad71a51786918d3119d9e1ccd1e15d741dace517a1ef6cb168091cb986d6e73a031891cb2b918edcc2d524965821af70535 + "@types/mdast": "npm:^4.0.0" + mdast-util-phrasing: "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/1b19337cc397c509e0b61e65137859f0e56325c2b977e57ed1c662fd90737935a706a50c16c1cd561c8e7ce44dbec8eff929d436013ab5726516a5bd2f33952d languageName: node linkType: hard @@ -11315,16 +11481,16 @@ __metadata: languageName: node linkType: hard -"remark-lint-strong-marker@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-strong-marker@npm:3.1.2" +"remark-lint-strong-marker@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-strong-marker@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/0c91893867d1c1e006747506de08e0c045e64ab98a5ea15c8fe67cd0acb0179b30599b4337ff852832f8fb3f5a80193b6bceed79355c92fcfca5c3f5d90a58f1 + "@types/mdast": "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/2e3ad702bd6076157ea19c84ac536e27e4cd7d130f10de2b75987e9beff97607d3cd200f7ddfccaebcf84d2b870d6c824bb62698fe440d95761cb598854b2932 languageName: node linkType: hard @@ -11340,17 +11506,20 @@ __metadata: languageName: node linkType: hard -"remark-lint-table-cell-padding@npm:^4.0.0": - version: 4.1.3 - resolution: "remark-lint-table-cell-padding@npm:4.1.3" +"remark-lint-table-cell-padding@npm:^5.0.0": + version: 5.0.0 + resolution: "remark-lint-table-cell-padding@npm:5.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - "@types/unist": "npm:^2.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/886bc6e5a3d942599d184ef74d366769a1eb9d198b2734a2199016084fe55378ac1b9b5b68249ff4cfee7da72d5600831a94ea5225370dc4cb01c2a97b7c3e47 + "@types/mdast": "npm:^4.0.0" + "@types/unist": "npm:^3.0.0" + devlop: "npm:^1.0.0" + mdast-util-phrasing: "npm:^4.0.0" + pluralize: "npm:^8.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/0d54fce4f3da8f0dfce7a3843c95318eac1b70ac1d1800492995286ccd1d208f1bea42132aaa0ea4636e3eff6f1362533e437a51ddf65ffff0defe16a2708b04 languageName: node linkType: hard @@ -11366,16 +11535,19 @@ __metadata: languageName: node linkType: hard -"remark-lint-table-pipe-alignment@npm:^3.0.0": - version: 3.1.3 - resolution: "remark-lint-table-pipe-alignment@npm:3.1.3" +"remark-lint-table-pipe-alignment@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-table-pipe-alignment@npm:4.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/cb03f43655284a788238726017b7b635678bd352fbe955d09b9b136ef444078d1b20732181d682ff997962225be51a45e9bcb723a895776a5803d940bbbadf92 + "@types/mdast": "npm:^4.0.0" + "@types/unist": "npm:^3.0.0" + devlop: "npm:^1.0.0" + mdast-util-phrasing: "npm:^4.0.0" + pluralize: "npm:^8.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/a91ff0658e70a3c726c5a5d0c095b2f6089e2aa85ea713388a66dd9435bcf629c531c0f41fbd692d59953a69d16936e181482ec6fe6511d90dd9f4caa241e550 languageName: node linkType: hard @@ -11391,16 +11563,17 @@ __metadata: languageName: node linkType: hard -"remark-lint-table-pipes@npm:^4.0.0": - version: 4.1.2 - resolution: "remark-lint-table-pipes@npm:4.1.2" +"remark-lint-table-pipes@npm:^5.0.0": + version: 5.0.0 + resolution: "remark-lint-table-pipes@npm:5.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/f26140b4fb0c5b0b61245f5dcfb22f6ef599aec384d4a57dd7f354010d3e13392a5e30a9b256dad818ef454d8d2d28e2f51c4becef8e7ae88e19a33af1d62f3e + "@types/mdast": "npm:^4.0.0" + "@types/unist": "npm:^3.0.0" + mdast-util-phrasing: "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/abdb85a80aedc195c64a0bd8bdff87ba9096dc13e4e3fdfd1bd0437d918479d8dd095c9e4b2720792244da786de5f577dfa71bb6e6e24ffbbf6ff9ea60a25c4a languageName: node linkType: hard @@ -11416,17 +11589,28 @@ __metadata: languageName: node linkType: hard -"remark-lint-unordered-list-marker-style@npm:^3.0.0": - version: 3.1.2 - resolution: "remark-lint-unordered-list-marker-style@npm:3.1.2" +"remark-lint-unordered-list-marker-style@npm:^4.0.0": + version: 4.0.0 + resolution: "remark-lint-unordered-list-marker-style@npm:4.0.0" + dependencies: + "@types/mdast": "npm:^4.0.0" + mdast-util-phrasing: "npm:^4.0.0" + unified-lint-rule: "npm:^3.0.0" + unist-util-position: "npm:^5.0.0" + unist-util-visit-parents: "npm:^6.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/b78b25704d8fda4d0747ecd504e8267d06d271dfc7ee7468bd10b8f9e4853b71c8863452eade143210b38ac0db7bebeb87d0fc1a762b0558269ce4e39fe37ee4 + languageName: node + linkType: hard + +"remark-lint@npm:^10.0.0": + version: 10.0.0 + resolution: "remark-lint@npm:10.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - unified: "npm:^10.0.0" - unified-lint-rule: "npm:^2.0.0" - unist-util-generated: "npm:^2.0.0" - unist-util-position: "npm:^4.0.0" - unist-util-visit: "npm:^4.0.0" - checksum: 10/a27cc0b8d659d6a5980a4e3efc74a508313fc590446105a5dd00d6ce220fc0c2d1e5c645d554aeb8e62bee44820029046a214298d8c957e5fb85e5a7fa378f73 + "@types/mdast": "npm:^4.0.0" + remark-message-control: "npm:^8.0.0" + unified: "npm:^11.0.0" + checksum: 10/ef64e2e46ebc3ee2f6ac93cf396508cfb9dee3acaf1ac39692d92e32ece75723d997f70fe8961ab5215bfb52a586c824e087d9445ad54bba5af75d0a2c8a6e58 languageName: node linkType: hard @@ -11439,17 +11623,6 @@ __metadata: languageName: node linkType: hard -"remark-lint@npm:^9.0.0": - version: 9.1.2 - resolution: "remark-lint@npm:9.1.2" - dependencies: - "@types/mdast": "npm:^3.0.0" - remark-message-control: "npm:^7.0.0" - unified: "npm:^10.1.0" - checksum: 10/067e110ba7272563dbcda9d7be99ce3ac1deb75083d6fd9cbc688b73bc09f138b3934b720e53c175de85cdd3a643e01b2454ee38115fe8afc23c44a90d2c95ce - languageName: node - linkType: hard - "remark-message-control@npm:^4.0.0": version: 4.2.0 resolution: "remark-message-control@npm:4.2.0" @@ -11461,16 +11634,15 @@ __metadata: languageName: node linkType: hard -"remark-message-control@npm:^7.0.0": - version: 7.1.1 - resolution: "remark-message-control@npm:7.1.1" +"remark-message-control@npm:^8.0.0": + version: 8.0.0 + resolution: "remark-message-control@npm:8.0.0" dependencies: - "@types/mdast": "npm:^3.0.0" - mdast-comment-marker: "npm:^2.0.0" - unified: "npm:^10.0.0" - unified-message-control: "npm:^4.0.0" - vfile: "npm:^5.0.0" - checksum: 10/1e8a8005e28c93d8d0e2f1caf41f4f0d7e6755145b8756b9f22fcd0a671de4727196a48666479f74a5c06c347cb07fcc97c45f5c679f75c802fabacf9e484971 + "@types/mdast": "npm:^4.0.0" + mdast-comment-marker: "npm:^3.0.0" + unified-message-control: "npm:^5.0.0" + vfile: "npm:^6.0.0" + checksum: 10/a53bccd4004639d685d43b520c14e7c4079cfdd7c297c82d0333ef7bf8e73d197868e933b65cc4dbded82de42cf8d55ff5f82a38a48c5c7e48cbd3b7767c3d85 languageName: node linkType: hard @@ -11550,57 +11722,55 @@ __metadata: languageName: node linkType: hard -"remark-preset-lint-markdown-style-guide@npm:^5.1.3": - version: 5.1.3 - resolution: "remark-preset-lint-markdown-style-guide@npm:5.1.3" - dependencies: - "@types/mdast": "npm:^3.0.0" - remark-lint: "npm:^9.0.0" - remark-lint-blockquote-indentation: "npm:^3.0.0" - remark-lint-code-block-style: "npm:^3.0.0" - remark-lint-definition-case: "npm:^3.0.0" - remark-lint-definition-spacing: "npm:^3.0.0" - remark-lint-emphasis-marker: "npm:^3.0.0" - remark-lint-fenced-code-flag: "npm:^3.0.0" - remark-lint-fenced-code-marker: "npm:^3.0.0" - remark-lint-file-extension: "npm:^2.0.0" - remark-lint-final-definition: "npm:^3.0.0" - remark-lint-hard-break-spaces: "npm:^3.0.0" - remark-lint-heading-increment: "npm:^3.0.0" - remark-lint-heading-style: "npm:^3.0.0" - remark-lint-link-title-style: "npm:^3.0.0" - remark-lint-list-item-content-indent: "npm:^3.0.0" - remark-lint-list-item-indent: "npm:^3.0.0" - remark-lint-list-item-spacing: "npm:^4.0.0" - remark-lint-maximum-heading-length: "npm:^3.0.0" - remark-lint-maximum-line-length: "npm:^3.0.0" - remark-lint-no-blockquote-without-marker: "npm:^5.0.0" - remark-lint-no-consecutive-blank-lines: "npm:^4.0.0" - remark-lint-no-duplicate-headings: "npm:^3.0.0" - remark-lint-no-emphasis-as-heading: "npm:^3.0.0" - remark-lint-no-file-name-articles: "npm:^2.0.0" - remark-lint-no-file-name-consecutive-dashes: "npm:^2.0.0" - remark-lint-no-file-name-irregular-characters: "npm:^2.0.0" - remark-lint-no-file-name-mixed-case: "npm:^2.0.0" - remark-lint-no-file-name-outer-dashes: "npm:^2.0.0" - remark-lint-no-heading-punctuation: "npm:^3.0.0" - remark-lint-no-inline-padding: "npm:^4.0.0" - remark-lint-no-literal-urls: "npm:^3.0.0" - remark-lint-no-multiple-toplevel-headings: "npm:^3.0.0" - remark-lint-no-shell-dollars: "npm:^3.0.0" - remark-lint-no-shortcut-reference-image: "npm:^3.0.0" - remark-lint-no-shortcut-reference-link: "npm:^3.0.0" - remark-lint-no-table-indentation: "npm:^4.0.0" - remark-lint-ordered-list-marker-style: "npm:^3.0.0" - remark-lint-ordered-list-marker-value: "npm:^3.0.0" - remark-lint-rule-style: "npm:^3.0.0" - remark-lint-strong-marker: "npm:^3.0.0" - remark-lint-table-cell-padding: "npm:^4.0.0" - remark-lint-table-pipe-alignment: "npm:^3.0.0" - remark-lint-table-pipes: "npm:^4.0.0" - remark-lint-unordered-list-marker-style: "npm:^3.0.0" - unified: "npm:^10.0.0" - checksum: 10/6f7e9406458ff28b6570a33776805ff89217dafa636c0936a6e812a4d029502101eaf0ba10ea8e2e7cb3480a9fdd4b894a697a00b86183a051fb285a10de3455 +"remark-preset-lint-markdown-style-guide@npm:^6.0.0": + version: 6.0.0 + resolution: "remark-preset-lint-markdown-style-guide@npm:6.0.0" + dependencies: + remark-lint: "npm:^10.0.0" + remark-lint-blockquote-indentation: "npm:^4.0.0" + remark-lint-code-block-style: "npm:^4.0.0" + remark-lint-definition-case: "npm:^4.0.0" + remark-lint-definition-spacing: "npm:^4.0.0" + remark-lint-emphasis-marker: "npm:^4.0.0" + remark-lint-fenced-code-flag: "npm:^4.0.0" + remark-lint-fenced-code-marker: "npm:^4.0.0" + remark-lint-file-extension: "npm:^3.0.0" + remark-lint-final-definition: "npm:^4.0.0" + remark-lint-hard-break-spaces: "npm:^4.0.0" + remark-lint-heading-increment: "npm:^4.0.0" + remark-lint-heading-style: "npm:^4.0.0" + remark-lint-link-title-style: "npm:^4.0.0" + remark-lint-list-item-content-indent: "npm:^4.0.0" + remark-lint-list-item-indent: "npm:^4.0.0" + remark-lint-list-item-spacing: "npm:^5.0.0" + remark-lint-maximum-heading-length: "npm:^4.0.0" + remark-lint-maximum-line-length: "npm:^4.0.0" + remark-lint-no-blockquote-without-marker: "npm:^6.0.0" + remark-lint-no-consecutive-blank-lines: "npm:^5.0.0" + remark-lint-no-duplicate-headings: "npm:^4.0.0" + remark-lint-no-emphasis-as-heading: "npm:^4.0.0" + remark-lint-no-file-name-articles: "npm:^3.0.0" + remark-lint-no-file-name-consecutive-dashes: "npm:^3.0.0" + remark-lint-no-file-name-irregular-characters: "npm:^3.0.0" + remark-lint-no-file-name-mixed-case: "npm:^3.0.0" + remark-lint-no-file-name-outer-dashes: "npm:^3.0.0" + remark-lint-no-heading-punctuation: "npm:^4.0.0" + remark-lint-no-literal-urls: "npm:^4.0.0" + remark-lint-no-multiple-toplevel-headings: "npm:^4.0.0" + remark-lint-no-shell-dollars: "npm:^4.0.0" + remark-lint-no-shortcut-reference-image: "npm:^4.0.0" + remark-lint-no-shortcut-reference-link: "npm:^4.0.0" + remark-lint-no-table-indentation: "npm:^5.0.0" + remark-lint-ordered-list-marker-style: "npm:^4.0.0" + remark-lint-ordered-list-marker-value: "npm:^4.0.0" + remark-lint-rule-style: "npm:^4.0.0" + remark-lint-strong-marker: "npm:^4.0.0" + remark-lint-table-cell-padding: "npm:^5.0.0" + remark-lint-table-pipe-alignment: "npm:^4.0.0" + remark-lint-table-pipes: "npm:^5.0.0" + remark-lint-unordered-list-marker-style: "npm:^4.0.0" + unified: "npm:^11.0.0" + checksum: 10/ec776bb5f735dc2591de36ab9fb7016a4d1c982ec539afefaee416a0735f39371e471a905b09737ab4f051307e489cae2822ed26f49e2355252a48791ca135be languageName: node linkType: hard @@ -11882,32 +12052,35 @@ __metadata: languageName: node linkType: hard -"rollup-plugin-node-externals@npm:^7.0.1": - version: 7.0.1 - resolution: "rollup-plugin-node-externals@npm:7.0.1" +"rollup-plugin-node-externals@npm:^7.1.2": + version: 7.1.2 + resolution: "rollup-plugin-node-externals@npm:7.1.2" peerDependencies: rollup: ^3.0.0 || ^4.0.0 - checksum: 10/1c4906cbffe85adb956d1a697f1a32ba3764622819397ad6959e9679244173ad6f110a2edd6687df9482848ed30203e998db5b81a2011e812e8c059bf5b02e25 - languageName: node - linkType: hard - -"rollup@npm:^4.0.2, rollup@npm:^4.12.1": - version: 4.12.1 - resolution: "rollup@npm:4.12.1" - dependencies: - "@rollup/rollup-android-arm-eabi": "npm:4.12.1" - "@rollup/rollup-android-arm64": "npm:4.12.1" - "@rollup/rollup-darwin-arm64": "npm:4.12.1" - "@rollup/rollup-darwin-x64": "npm:4.12.1" - "@rollup/rollup-linux-arm-gnueabihf": "npm:4.12.1" - "@rollup/rollup-linux-arm64-gnu": "npm:4.12.1" - "@rollup/rollup-linux-arm64-musl": "npm:4.12.1" - "@rollup/rollup-linux-riscv64-gnu": "npm:4.12.1" - "@rollup/rollup-linux-x64-gnu": "npm:4.12.1" - "@rollup/rollup-linux-x64-musl": "npm:4.12.1" - "@rollup/rollup-win32-arm64-msvc": "npm:4.12.1" - "@rollup/rollup-win32-ia32-msvc": "npm:4.12.1" - "@rollup/rollup-win32-x64-msvc": "npm:4.12.1" + checksum: 10/aaf99b409bac1549e530c72a7c40ddfc05e8663fb457f5fea93bb4a42326e22b2f4e3f34eb87033ffc62b1e72620ab6583b6f63587372bbb2be285557d98a782 + languageName: node + linkType: hard + +"rollup@npm:^4.0.2, rollup@npm:^4.18.0": + version: 4.18.1 + resolution: "rollup@npm:4.18.1" + dependencies: + "@rollup/rollup-android-arm-eabi": "npm:4.18.1" + "@rollup/rollup-android-arm64": "npm:4.18.1" + "@rollup/rollup-darwin-arm64": "npm:4.18.1" + "@rollup/rollup-darwin-x64": "npm:4.18.1" + "@rollup/rollup-linux-arm-gnueabihf": "npm:4.18.1" + "@rollup/rollup-linux-arm-musleabihf": "npm:4.18.1" + "@rollup/rollup-linux-arm64-gnu": "npm:4.18.1" + "@rollup/rollup-linux-arm64-musl": "npm:4.18.1" + "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.18.1" + "@rollup/rollup-linux-riscv64-gnu": "npm:4.18.1" + "@rollup/rollup-linux-s390x-gnu": "npm:4.18.1" + "@rollup/rollup-linux-x64-gnu": "npm:4.18.1" + "@rollup/rollup-linux-x64-musl": "npm:4.18.1" + "@rollup/rollup-win32-arm64-msvc": "npm:4.18.1" + "@rollup/rollup-win32-ia32-msvc": "npm:4.18.1" + "@rollup/rollup-win32-x64-msvc": "npm:4.18.1" "@types/estree": "npm:1.0.5" fsevents: "npm:~2.3.2" dependenciesMeta: @@ -11921,12 +12094,18 @@ __metadata: optional: true "@rollup/rollup-linux-arm-gnueabihf": optional: true + "@rollup/rollup-linux-arm-musleabihf": + optional: true "@rollup/rollup-linux-arm64-gnu": optional: true "@rollup/rollup-linux-arm64-musl": optional: true + "@rollup/rollup-linux-powerpc64le-gnu": + optional: true "@rollup/rollup-linux-riscv64-gnu": optional: true + "@rollup/rollup-linux-s390x-gnu": + optional: true "@rollup/rollup-linux-x64-gnu": optional: true "@rollup/rollup-linux-x64-musl": @@ -11941,7 +12120,7 @@ __metadata: optional: true bin: rollup: dist/bin/rollup - checksum: 10/986c3b3422ac7a93af0980da2ea14b6d2c75cfdeb314843e9d91ca75641fd585b0fcaf242c3f00615ac8371ba93e0cc341b4a342cad99e1c66301dcec5936a8c + checksum: 10/7a5f110d216e8599dc3cb11cf570316d989abae00785d99c2bcb6027287fe60d2eaed70e457d88a036622e7fc67e8db6e730d3c784aa90a258bd4c020676ad44 languageName: node linkType: hard @@ -11977,7 +12156,7 @@ __metadata: languageName: node linkType: hard -"sade@npm:^1.7.3, sade@npm:^1.8.1": +"sade@npm:^1.8.1": version: 1.8.1 resolution: "sade@npm:1.8.1" dependencies: @@ -12073,14 +12252,12 @@ __metadata: languageName: node linkType: hard -"semver@npm:^7.0.0, semver@npm:^7.1.1, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.3.8, semver@npm:^7.5.3, semver@npm:^7.5.4": - version: 7.5.4 - resolution: "semver@npm:7.5.4" - dependencies: - lru-cache: "npm:^6.0.0" +"semver@npm:^7.1.1, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0, semver@npm:^7.6.1, semver@npm:^7.6.2": + version: 7.6.2 + resolution: "semver@npm:7.6.2" bin: semver: bin/semver.js - checksum: 10/985dec0d372370229a262c737063860fabd4a1c730662c1ea3200a2f649117761a42184c96df62a0e885e76fbd5dace41087d6c1ac0351b13c0df5d6bcb1b5ac + checksum: 10/296b17d027f57a87ef645e9c725bff4865a38dfc9caf29b26aa084b85820972fbe7372caea1ba6857162fa990702c6d9c1d82297cecb72d56c78ab29070d2ca2 languageName: node linkType: hard @@ -12408,6 +12585,13 @@ __metadata: languageName: node linkType: hard +"space-separated-tokens@npm:^2.0.0": + version: 2.0.2 + resolution: "space-separated-tokens@npm:2.0.2" + checksum: 10/202e97d7ca1ba0758a0aa4fe226ff98142073bcceeff2da3aad037968878552c3bbce3b3231970025375bbba5aee00c5b8206eda408da837ab2dc9c0f26be990 + languageName: node + linkType: hard + "spawn-please@npm:^2.0.2": version: 2.0.2 resolution: "spawn-please@npm:2.0.2" @@ -12638,6 +12822,16 @@ __metadata: languageName: node linkType: hard +"stringify-entities@npm:^4.0.0": + version: 4.0.4 + resolution: "stringify-entities@npm:4.0.4" + dependencies: + character-entities-html4: "npm:^2.0.0" + character-entities-legacy: "npm:^3.0.0" + checksum: 10/42bd2f37528795a7b4386bd39dc4699515fb0f0b8c418a6bb29ae205ce66eaff9e8801a2bee65b8049c918c9475a71c7e5911f6a88c19f1d84ebdcba3d881a2d + languageName: node + linkType: hard + "strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1": version: 6.0.1 resolution: "strip-ansi@npm:6.0.1" @@ -12734,21 +12928,20 @@ __metadata: languageName: node linkType: hard -"superagent@npm:^8.1.2": - version: 8.1.2 - resolution: "superagent@npm:8.1.2" +"superagent@npm:^9.0.1": + version: 9.0.2 + resolution: "superagent@npm:9.0.2" dependencies: component-emitter: "npm:^1.3.0" cookiejar: "npm:^2.1.4" debug: "npm:^4.3.4" fast-safe-stringify: "npm:^2.1.1" form-data: "npm:^4.0.0" - formidable: "npm:^2.1.2" + formidable: "npm:^3.5.1" methods: "npm:^1.1.2" mime: "npm:2.6.0" qs: "npm:^6.11.0" - semver: "npm:^7.3.8" - checksum: 10/33d0072e051baf91c7d68131c70682a0650dd1bd0b8dfb6f88e5bdfcb02e18cc2b42a66e44b32fd405ac6bcf5fd57c6e267bf80e2a8ce57a18166a9d3a78f57d + checksum: 10/d3c0c9051ceec84d5b431eaa410ad81bcd53255cea57af1fc66d683a24c34f3ba4761b411072a9bf489a70e3d5b586a78a0e6f2eac6a561067e7d196ddab0907 languageName: node linkType: hard @@ -12761,13 +12954,13 @@ __metadata: languageName: node linkType: hard -"supertest@npm:^6.3.4": - version: 6.3.4 - resolution: "supertest@npm:6.3.4" +"supertest@npm:^7.0.0": + version: 7.0.0 + resolution: "supertest@npm:7.0.0" dependencies: methods: "npm:^1.1.2" - superagent: "npm:^8.1.2" - checksum: 10/93015318f5a90398915a032747973d9eacf9aebec3f07b413eba9d8b3db83ff48fbf6f5a92f9526578cae50153b0f76a37de197141030d856db4371a711b86ee + superagent: "npm:^9.0.1" + checksum: 10/73bf2a37e13856a1b3e6a37b9df5cec8e506aa0360a5f5ecd989d1f4b0edf168883e306012e81e371d5252c17d4c7bef4ba30633dbf3877cbf52fc7af51cca9b languageName: node linkType: hard @@ -13037,21 +13230,24 @@ __metadata: languageName: node linkType: hard -"ts-api-utils@npm:^1.0.1": - version: 1.0.3 - resolution: "ts-api-utils@npm:1.0.3" +"ts-api-utils@npm:^1.3.0": + version: 1.3.0 + resolution: "ts-api-utils@npm:1.3.0" peerDependencies: typescript: ">=4.2.0" - checksum: 10/1350a5110eb1e534e9a6178f4081fb8a4fcc439749e19f4ad699baec9090fcb90fe532d5e191d91a062dc6e454a14a8d7eb2ad202f57135a30c4a44a3024f039 + checksum: 10/3ee44faa24410cd649b5c864e068d438aa437ef64e9e4a66a41646a6d3024d3097a695eeb3fb26ee364705d3cb9653a65756d009e6a53badb6066a5f447bf7ed languageName: node linkType: hard -"ts-essentials@npm:^7.0.3": - version: 7.0.3 - resolution: "ts-essentials@npm:7.0.3" +"ts-essentials@npm:^10.0.0": + version: 10.0.1 + resolution: "ts-essentials@npm:10.0.1" peerDependencies: - typescript: ">=3.7.0" - checksum: 10/021b4263ddd58897171f3f5c467b5c872f76ba2ea07dfc11fa9667ba8d62ccb7f390db3e581139dcc6da94c3ff6306921f574acdb2b94cbc9d7da3e859e24665 + typescript: ">=4.5.0" + peerDependenciesMeta: + typescript: + optional: true + checksum: 10/ced6e659a57ad7a74bfdae1c18594e4cb1c8ffb30b0763a4ca1239b471e474cd53b51a8907f49cbedd8961a8cbd63a1f2fbbb266d6e827d1b6b3dbb58fdaac03 languageName: node linkType: hard @@ -13062,11 +13258,12 @@ __metadata: languageName: node linkType: hard -"ts-jest@npm:^29.1.2": - version: 29.1.2 - resolution: "ts-jest@npm:29.1.2" +"ts-jest@npm:^29.1.5": + version: 29.2.2 + resolution: "ts-jest@npm:29.2.2" dependencies: bs-logger: "npm:0.x" + ejs: "npm:^3.0.0" fast-json-stable-stringify: "npm:2.x" jest-util: "npm:^29.0.0" json5: "npm:^2.2.3" @@ -13076,6 +13273,7 @@ __metadata: yargs-parser: "npm:^21.0.1" peerDependencies: "@babel/core": ">=7.0.0-beta.0 <8" + "@jest/transform": ^29.0.0 "@jest/types": ^29.0.0 babel-jest: ^29.0.0 jest: ^29.0.0 @@ -13083,6 +13281,8 @@ __metadata: peerDependenciesMeta: "@babel/core": optional: true + "@jest/transform": + optional: true "@jest/types": optional: true babel-jest: @@ -13091,7 +13291,7 @@ __metadata: optional: true bin: ts-jest: cli.js - checksum: 10/5e40e7b933a1f3aa0d304d3c53913d1a7125fc79cd44e22b332f6e25dfe13008ddc7ac647066bb4f914d76083f7e8949f0bc156d793c30f3419f4ffd8180968b + checksum: 10/6523de2d78493a7901dfc37f2a491b259f5d30beac7a2179ddf8524da0c8e4a7f488aad2d22eca8d074bcc54d7b06a90153fdbf6e9c245f5fc1e484788f0c9d8 languageName: node linkType: hard @@ -13187,29 +13387,29 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^1.8.1, tslib@npm:^1.9.0": +"tslib@npm:^1.9.0": version: 1.14.1 resolution: "tslib@npm:1.14.1" checksum: 10/7dbf34e6f55c6492637adb81b555af5e3b4f9cc6b998fb440dac82d3b42bdc91560a35a5fb75e20e24a076c651438234da6743d139e4feabf0783f3cdfe1dddb languageName: node linkType: hard -"tslib@npm:^2.3.1, tslib@npm:^2.4.0, tslib@npm:^2.6.2": - version: 2.6.2 - resolution: "tslib@npm:2.6.2" - checksum: 10/bd26c22d36736513980091a1e356378e8b662ded04204453d353a7f34a4c21ed0afc59b5f90719d4ba756e581a162ecbf93118dc9c6be5acf70aa309188166ca +"tslib@npm:^2.3.1, tslib@npm:^2.4.0, tslib@npm:^2.6.2, tslib@npm:^2.6.3": + version: 2.6.3 + resolution: "tslib@npm:2.6.3" + checksum: 10/52109bb681f8133a2e58142f11a50e05476de4f075ca906d13b596ae5f7f12d30c482feb0bff167ae01cfc84c5803e575a307d47938999246f5a49d174fc558c languageName: node linkType: hard -"tsup@npm:^8.0.2": - version: 8.0.2 - resolution: "tsup@npm:8.0.2" +"tsup@npm:^8.1.0": + version: 8.1.0 + resolution: "tsup@npm:8.1.0" dependencies: bundle-require: "npm:^4.0.0" cac: "npm:^6.7.12" chokidar: "npm:^3.5.1" debug: "npm:^4.3.1" - esbuild: "npm:^0.19.2" + esbuild: "npm:^0.21.4" execa: "npm:^5.0.0" globby: "npm:^11.0.3" joycon: "npm:^3.0.1" @@ -13236,18 +13436,7 @@ __metadata: bin: tsup: dist/cli-default.js tsup-node: dist/cli-node.js - checksum: 10/dd8c375181a748cdeb86aa3d779d6d755596881f47fe38b7c4b810ff1ef6424d485b23065fda0f6e32d9988bae19cd64e49f6e2f11295d5184485ab7528a37d1 - languageName: node - linkType: hard - -"tsutils@npm:^3.21.0": - version: 3.21.0 - resolution: "tsutils@npm:3.21.0" - dependencies: - tslib: "npm:^1.8.1" - peerDependencies: - typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - checksum: 10/ea036bec1dd024e309939ffd49fda7a351c0e87a1b8eb049570dd119d447250e2c56e0e6c00554e8205760e7417793fdebff752a46e573fbe07d4f375502a5b2 + checksum: 10/5a575e8d45eb91b7a0850fa554166a8a1f047b35601bfc0eb2cd04804403bf1eef8a9799207748efe10e35da748a79da7546124a253ee07c6b27753a64b04bcc languageName: node linkType: hard @@ -13263,9 +13452,9 @@ __metadata: linkType: hard "tweakpane@npm:^4.0.3": - version: 4.0.3 - resolution: "tweakpane@npm:4.0.3" - checksum: 10/47b92255af368b0e23d6b3279f617de57cb56df6eff21d6b4140a8e9d3e711d14b44418a39d1f7e986c960d5c34cabf22d07c9c629880cd780c1b640d3c32a27 + version: 4.0.4 + resolution: "tweakpane@npm:4.0.4" + checksum: 10/e264cb907cd628f3dd2a2452306d8ec1b5f9e41ce4a91e7633a9e93513128d91e96a5ab79d724b7f0080e6a8a664e8fc03234fb1a2499bb44c6ac4f7b356116a languageName: node linkType: hard @@ -13301,13 +13490,6 @@ __metadata: languageName: node linkType: hard -"type-fest@npm:^0.20.2": - version: 0.20.2 - resolution: "type-fest@npm:0.20.2" - checksum: 10/8907e16284b2d6cfa4f4817e93520121941baba36b39219ea36acfe64c86b9dbc10c9941af450bd60832c8f43464974d51c0957f9858bc66b952b66b6914cbb9 - languageName: node - linkType: hard - "type-fest@npm:^0.21.3": version: 0.21.3 resolution: "type-fest@npm:0.21.3" @@ -13343,10 +13525,10 @@ __metadata: languageName: node linkType: hard -"type-fest@npm:^4.3.3": - version: 4.8.1 - resolution: "type-fest@npm:4.8.1" - checksum: 10/ac8d7fa89f7e89e69b9b1f77150a0ca3f33608504372c5894ee10f269d7391e1706c16ca6ac8f9f443378ef01b020feb0d76422b0573ee25893fc47ce18d2052 +"type-fest@npm:^4.20.0": + version: 4.21.0 + resolution: "type-fest@npm:4.21.0" + checksum: 10/a4dc074b25239fff4062495c58554dcec15845622d753092d2bf24fc3b1c49f85805ed74f151976d666056ff122b3a5a988e85226575b7fbbc8e92d2db210137 languageName: node linkType: hard @@ -13406,9 +13588,9 @@ __metadata: languageName: node linkType: hard -"typedoc@npm:^0.25.11": - version: 0.25.12 - resolution: "typedoc@npm:0.25.12" +"typedoc@npm:^0.25.13": + version: 0.25.13 + resolution: "typedoc@npm:0.25.13" dependencies: lunr: "npm:^2.3.9" marked: "npm:^4.3.0" @@ -13418,7 +13600,7 @@ __metadata: typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x bin: typedoc: bin/typedoc - checksum: 10/eb02b35a6fd1f8c3f9bb2b42b379139cce5b72b3797e983e58f61578b23610c1ee770dc442286981ab13d2949bdb746a84c38bcd856f09ac50a7a861cca56fd8 + checksum: 10/3c82603894b5830c4b027b4f4f9ca70f770b6752c6512a42e780c40cb67fe4c9a144e34a837bb35aab14a125e00a5893e1e6feac1ec86a2add80f46833b279d4 languageName: node linkType: hard @@ -13429,23 +13611,23 @@ __metadata: languageName: node linkType: hard -"typescript@npm:^5.4.2": - version: 5.4.2 - resolution: "typescript@npm:5.4.2" +"typescript@npm:^5.5.2, typescript@npm:^5.5.3": + version: 5.5.3 + resolution: "typescript@npm:5.5.3" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 10/f8cfdc630ab1672f004e9561eb2916935b2d267792d07ce93e97fc601c7a65191af32033d5e9c0169b7dc37da7db9bf320f7432bc84527cb7697effaa4e4559d + checksum: 10/11a867312419ed497929aafd2f1d28b2cd41810a5eb6c6e9e169559112e9ea073d681c121a29102e67cd4478d0a4ae37a306a5800f3717f59c4337e6a9bd5e8d languageName: node linkType: hard -"typescript@patch:typescript@npm%3A^5.4.2#optional!builtin": - version: 5.4.2 - resolution: "typescript@patch:typescript@npm%3A5.4.2#optional!builtin::version=5.4.2&hash=5adc0c" +"typescript@patch:typescript@npm%3A^5.5.2#optional!builtin, typescript@patch:typescript@npm%3A^5.5.3#optional!builtin": + version: 5.5.3 + resolution: "typescript@patch:typescript@npm%3A5.5.3#optional!builtin::version=5.5.3&hash=379a07" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 10/f5f9a4133c2670761f0166eae5b3bafbc4a3fc24f0f42a93c9c893d9e9d6e66ea066969c5e7483fa66b4ae0e99125592553f3b92fd3599484de8be13b0615176 + checksum: 10/7cf7acb78a80f749b82842f2ffe01e90e7b3e709a6f4268588e0b7599c41dca1059be217f47778fe1a380bfaf60933021ef20d002c426d4d7745e1b36c11467b languageName: node linkType: hard @@ -13494,15 +13676,15 @@ __metadata: languageName: node linkType: hard -"unified-lint-rule@npm:^2.0.0": - version: 2.1.2 - resolution: "unified-lint-rule@npm:2.1.2" +"unified-lint-rule@npm:^3.0.0": + version: 3.0.0 + resolution: "unified-lint-rule@npm:3.0.0" dependencies: - "@types/unist": "npm:^2.0.0" + "@types/unist": "npm:^3.0.0" trough: "npm:^2.0.0" - unified: "npm:^10.0.0" - vfile: "npm:^5.0.0" - checksum: 10/4ec1e7760fdfe93379b6b01abf7dbe6fe8ed5df50e076a859e63e0f99fbefc16fe6bc505250cb4982d1df1b3376536a94ba65441dc43d1c14e9683c26867ee44 + unified: "npm:^11.0.0" + vfile: "npm:^6.0.0" + checksum: 10/6298a35c5fc71de2113cc407c31b69e8560436dc3c02f85d25b56db8485fea4913000dde0268ac45bc9faa5c006d25d79ef0b3db829e989281acd26972e6a761 languageName: node linkType: hard @@ -13517,32 +13699,34 @@ __metadata: languageName: node linkType: hard -"unified-message-control@npm:^4.0.0": - version: 4.0.0 - resolution: "unified-message-control@npm:4.0.0" +"unified-message-control@npm:^5.0.0": + version: 5.0.0 + resolution: "unified-message-control@npm:5.0.0" dependencies: - "@types/unist": "npm:^2.0.0" - unist-util-is: "npm:^5.0.0" - unist-util-visit: "npm:^3.0.0" - vfile: "npm:^5.0.0" - vfile-location: "npm:^4.0.0" - vfile-message: "npm:^3.0.0" - checksum: 10/5ea7edbf112aa4c7ba10e9c0dbd4ae5236921fc13f69bb61aacedc2497cdfda2c0512ce9f9bd3d5c00019c71ba2590a4fdf42b1c068f52f4db59ec80a1cc7340 + "@types/unist": "npm:^3.0.0" + devlop: "npm:^1.0.0" + space-separated-tokens: "npm:^2.0.0" + unist-util-is: "npm:^6.0.0" + unist-util-visit: "npm:^5.0.0" + vfile: "npm:^6.0.0" + vfile-location: "npm:^5.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/58bd80331ba65236e9f026cb8482f24f25c42a550c2d8aed3d7e766a8a1d536c2b2e28b0f0670f1f25c9d450e3d9e7c997f76b406dc8f19b8c5cbbfc91cb8847 languageName: node linkType: hard -"unified@npm:^10.0.0, unified@npm:^10.1.0": - version: 10.1.2 - resolution: "unified@npm:10.1.2" +"unified@npm:^11.0.0": + version: 11.0.5 + resolution: "unified@npm:11.0.5" dependencies: - "@types/unist": "npm:^2.0.0" + "@types/unist": "npm:^3.0.0" bail: "npm:^2.0.0" + devlop: "npm:^1.0.0" extend: "npm:^3.0.0" - is-buffer: "npm:^2.0.0" is-plain-obj: "npm:^4.0.0" trough: "npm:^2.0.0" - vfile: "npm:^5.0.0" - checksum: 10/6cffebcefc3290be26d25a58ba714cda943142782baf320fddf374ca3a319bdaabb006f96df4be17b8b367f5e6f6e113b1027c52ef66154846a7a110550f6688 + vfile: "npm:^6.0.0" + checksum: 10/d9e6e88900a075f391b6bbf06f34062d41fa6257798110d1647753cfc2c6a6e2c1d016434e8ee35706c50485f9fb9ae4707a6a4790bd8dc461ec7e7315ed908b languageName: node linkType: hard @@ -13623,13 +13807,6 @@ __metadata: languageName: node linkType: hard -"unist-util-generated@npm:^2.0.0": - version: 2.0.1 - resolution: "unist-util-generated@npm:2.0.1" - checksum: 10/0528642918683f1518ab7a50cf8c900df10d8717b58bd2fb05aab29393b1c4050fd2740792f18d477b52f942bfb0e6e00023e985c0a7bd63859d3d836b56e4ce - languageName: node - linkType: hard - "unist-util-is@npm:^3.0.0": version: 3.0.0 resolution: "unist-util-is@npm:3.0.0" @@ -13637,12 +13814,12 @@ __metadata: languageName: node linkType: hard -"unist-util-is@npm:^5.0.0": - version: 5.2.1 - resolution: "unist-util-is@npm:5.2.1" +"unist-util-is@npm:^6.0.0": + version: 6.0.0 + resolution: "unist-util-is@npm:6.0.0" dependencies: - "@types/unist": "npm:^2.0.0" - checksum: 10/c10f6c07aad4f4830ffa8ea82b42a2c8d5cd36c7555e27889e5fee953040af321e4e6f4e52c4edb606604de75d7230a5f4bc7b71b8ac3e874a26ab595c2057e4 + "@types/unist": "npm:^3.0.0" + checksum: 10/edd6a93fb2255addf4b9eeb304c1da63c62179aef793169dd64ab955cf2f6814885fe25f95f8105893e3562dead348af535718d7a84333826e0491c04bf42511 languageName: node linkType: hard @@ -13653,12 +13830,12 @@ __metadata: languageName: node linkType: hard -"unist-util-position@npm:^4.0.0": - version: 4.0.4 - resolution: "unist-util-position@npm:4.0.4" +"unist-util-position@npm:^5.0.0": + version: 5.0.0 + resolution: "unist-util-position@npm:5.0.0" dependencies: - "@types/unist": "npm:^2.0.0" - checksum: 10/aedbc5d112cdab85b752a7dacd8f04233655f00e08948a42f6e49682467c6fc0c531c91acc71188da5ac8acfea9e67d72bc054127d1c4b76b31792cfb5132423 + "@types/unist": "npm:^3.0.0" + checksum: 10/89d4da00e74618d7562ac7ac288961df9bcd4ccca6df3b5a90650f018eceb6b95de6e771e88bdbef46cc9d96861d456abe57b7ad1108921e0feb67c6292aa29d languageName: node linkType: hard @@ -13671,6 +13848,16 @@ __metadata: languageName: node linkType: hard +"unist-util-remove-position@npm:^5.0.0": + version: 5.0.0 + resolution: "unist-util-remove-position@npm:5.0.0" + dependencies: + "@types/unist": "npm:^3.0.0" + unist-util-visit: "npm:^5.0.0" + checksum: 10/4d89dc25e2091f9d47d92552145a26bf0e4a32d6b453e9cacac7742d730ada186ee1b820579fee3eeaa31e119850c2cb82f8b5898f977a636d7220e998626967 + languageName: node + linkType: hard + "unist-util-stringify-position@npm:^2.0.0": version: 2.0.3 resolution: "unist-util-stringify-position@npm:2.0.3" @@ -13680,12 +13867,12 @@ __metadata: languageName: node linkType: hard -"unist-util-stringify-position@npm:^3.0.0": - version: 3.0.3 - resolution: "unist-util-stringify-position@npm:3.0.3" +"unist-util-stringify-position@npm:^4.0.0": + version: 4.0.0 + resolution: "unist-util-stringify-position@npm:4.0.0" dependencies: - "@types/unist": "npm:^2.0.0" - checksum: 10/07913e4fd77fe57d95f8b2f771354f97a29082229c1ad14ceedce6bbc77b2d784ca8296563335471cdca97915e548204bd6f098ea5b808b822b4b54087662cfb + "@types/unist": "npm:^3.0.0" + checksum: 10/d15c88aca7a31902d95d5b5355bbe09583cf6f6ff6e59e134ef76c76d3c30bc1021f2d7ea5b7897c6d0858ed5f3770c1b19de9c78274f50d72f95a0d05f1af71 languageName: node linkType: hard @@ -13698,23 +13885,13 @@ __metadata: languageName: node linkType: hard -"unist-util-visit-parents@npm:^4.0.0": - version: 4.1.1 - resolution: "unist-util-visit-parents@npm:4.1.1" - dependencies: - "@types/unist": "npm:^2.0.0" - unist-util-is: "npm:^5.0.0" - checksum: 10/7c0828b384fe00c82b398d12c641d1fc4da77665a50af44c732d0b6c0d6af2874ffaf6326f3a0f89c34065712d2468510b1b0e4b8807a292f2baefdeadc8469c - languageName: node - linkType: hard - -"unist-util-visit-parents@npm:^5.1.1": - version: 5.1.3 - resolution: "unist-util-visit-parents@npm:5.1.3" +"unist-util-visit-parents@npm:^6.0.0": + version: 6.0.1 + resolution: "unist-util-visit-parents@npm:6.0.1" dependencies: - "@types/unist": "npm:^2.0.0" - unist-util-is: "npm:^5.0.0" - checksum: 10/5381fc57a129d478d983b988d86b72a1266d6f91fc608562b00bfa76596128d6e4d1c2b26ced64d96e55eb5d27d620081b4ee9703979bab63e1210789e781372 + "@types/unist": "npm:^3.0.0" + unist-util-is: "npm:^6.0.0" + checksum: 10/645b3cbc5e923bc692b1eb1a9ca17bffc5aabc25e6090ff3f1489bff8effd1890b28f7a09dc853cb6a7fa0da8581bfebc9b670a68b53c4c086cb9610dfd37701 languageName: node linkType: hard @@ -13727,25 +13904,14 @@ __metadata: languageName: node linkType: hard -"unist-util-visit@npm:^3.0.0": - version: 3.1.0 - resolution: "unist-util-visit@npm:3.1.0" - dependencies: - "@types/unist": "npm:^2.0.0" - unist-util-is: "npm:^5.0.0" - unist-util-visit-parents: "npm:^4.0.0" - checksum: 10/c37dbc0c5509f85f3abdf46d927b3dd11e6c419159771b1f1a5ce446d36ac993d04b087e28bc6173a172e0fbe9d77e997f120029b2b449766ebe55b6f6e0cc2c - languageName: node - linkType: hard - -"unist-util-visit@npm:^4.0.0": - version: 4.1.2 - resolution: "unist-util-visit@npm:4.1.2" +"unist-util-visit@npm:^5.0.0": + version: 5.0.0 + resolution: "unist-util-visit@npm:5.0.0" dependencies: - "@types/unist": "npm:^2.0.0" - unist-util-is: "npm:^5.0.0" - unist-util-visit-parents: "npm:^5.1.1" - checksum: 10/e3b20c6b1f5ae1b7b40bbf9be49103a342d98fad98bdf958110c20d72e5923bd3f12966b6702459bc61ab832facb5af418a79af87cefa7a8a41b892369678b13 + "@types/unist": "npm:^3.0.0" + unist-util-is: "npm:^6.0.0" + unist-util-visit-parents: "npm:^6.0.0" + checksum: 10/f2bbde23641e9ade7640358c06ddeec0f38342322eb8e7819d9ee380b0f859d25d084dde22bf63db0280b3b2f36575f15aa1d6c23acf276c91c2493cf799e3b0 languageName: node linkType: hard @@ -13766,17 +13932,17 @@ __metadata: languageName: node linkType: hard -"update-browserslist-db@npm:^1.0.13": - version: 1.0.13 - resolution: "update-browserslist-db@npm:1.0.13" +"update-browserslist-db@npm:^1.1.0": + version: 1.1.0 + resolution: "update-browserslist-db@npm:1.1.0" dependencies: - escalade: "npm:^3.1.1" - picocolors: "npm:^1.0.0" + escalade: "npm:^3.1.2" + picocolors: "npm:^1.0.1" peerDependencies: browserslist: ">= 4.21.0" bin: update-browserslist-db: cli.js - checksum: 10/9074b4ef34d2ed931f27d390aafdd391ee7c45ad83c508e8fed6aaae1eb68f81999a768ed8525c6f88d4001a4fbf1b8c0268f099d0e8e72088ec5945ac796acf + checksum: 10/d70b9efeaf4601aadb1a4f6456a7a5d9118e0063d995866b8e0c5e0cf559482671dab6ce7b079f9536b06758a344fbd83f974b965211e1c6e8d1958540b0c24c languageName: node linkType: hard @@ -13839,20 +14005,6 @@ __metadata: languageName: node linkType: hard -"uvu@npm:^0.5.0": - version: 0.5.6 - resolution: "uvu@npm:0.5.6" - dependencies: - dequal: "npm:^2.0.0" - diff: "npm:^5.0.0" - kleur: "npm:^4.0.3" - sade: "npm:^1.7.3" - bin: - uvu: bin.js - checksum: 10/66ba25afc6732249877f9f4f8b6146f3aaa97538c51cf498f55825d602c33dbb903e02c7e1547cbca6bdfbb609e07eb7ea758b5156002ac2dd5072f00606f8d9 - languageName: node - linkType: hard - "v8-compile-cache-lib@npm:^3.0.1": version: 3.0.1 resolution: "v8-compile-cache-lib@npm:3.0.1" @@ -13888,12 +14040,10 @@ __metadata: languageName: node linkType: hard -"validate-npm-package-name@npm:^5.0.0": - version: 5.0.0 - resolution: "validate-npm-package-name@npm:5.0.0" - dependencies: - builtins: "npm:^5.0.0" - checksum: 10/5342a994986199b3c28e53a8452a14b2bb5085727691ea7aa0d284a6606b127c371e0925ae99b3f1ef7cc7d2c9de75f52eb61a3d1cc45e39bca1e3a9444cbb4e +"validate-npm-package-name@npm:^5.0.0, validate-npm-package-name@npm:^5.0.1": + version: 5.0.1 + resolution: "validate-npm-package-name@npm:5.0.1" + checksum: 10/0d583a1af23aeffea7748742cf22b6802458736fb8b60323ba5949763824d46f796474b0e1b9206beb716f9d75269e19dbd7795d6b038b29d561be95dd827381 languageName: node linkType: hard @@ -13904,13 +14054,13 @@ __metadata: languageName: node linkType: hard -"vfile-location@npm:^4.0.0": - version: 4.1.0 - resolution: "vfile-location@npm:4.1.0" +"vfile-location@npm:^5.0.0": + version: 5.0.2 + resolution: "vfile-location@npm:5.0.2" dependencies: - "@types/unist": "npm:^2.0.0" - vfile: "npm:^5.0.0" - checksum: 10/c894e8e5224170d1f85288f4a1d1ebcee0780823ea2b49d881648ab360ebf01b37ecb09b1c4439a75f9a51f31a9f9742cd045e987763e367c352a1ef7c50d446 + "@types/unist": "npm:^3.0.0" + vfile: "npm:^6.0.0" + checksum: 10/b61c048cedad3555b4f007f390412c6503f58a6a130b58badf4ee340c87e0d7421e9c86bbc1494c57dedfccadb60f5176cc60ba3098209d99fb3a3d8804e4c38 languageName: node linkType: hard @@ -13924,13 +14074,13 @@ __metadata: languageName: node linkType: hard -"vfile-message@npm:^3.0.0": - version: 3.1.4 - resolution: "vfile-message@npm:3.1.4" +"vfile-message@npm:^4.0.0": + version: 4.0.2 + resolution: "vfile-message@npm:4.0.2" dependencies: - "@types/unist": "npm:^2.0.0" - unist-util-stringify-position: "npm:^3.0.0" - checksum: 10/423ca87f4427a403e4688d7ec663a2e6add694eefac47c945746463377428c7553bc613058841f1da83e18b68af886d3dd11cb96d582b5cc3c98e11efb7e55e9 + "@types/unist": "npm:^3.0.0" + unist-util-stringify-position: "npm:^4.0.0" + checksum: 10/1a5a72bf4945a7103750a3001bd979088ce42f6a01efa8590e68b2425e1afc61ddc5c76f2d3c4a7053b40332b24c09982b68743223e99281158fe727135719fc languageName: node linkType: hard @@ -13946,15 +14096,14 @@ __metadata: languageName: node linkType: hard -"vfile@npm:^5.0.0": - version: 5.3.7 - resolution: "vfile@npm:5.3.7" +"vfile@npm:^6.0.0": + version: 6.0.1 + resolution: "vfile@npm:6.0.1" dependencies: - "@types/unist": "npm:^2.0.0" - is-buffer: "npm:^2.0.0" - unist-util-stringify-position: "npm:^3.0.0" - vfile-message: "npm:^3.0.0" - checksum: 10/d8f59b419d4c83b3ed24f500cf02393149b728f8803f88519c18fe0733f62544fa9ab0d8425a8bc7835181d848b9ce29c014168dc45af72f416074bbe475f643 + "@types/unist": "npm:^3.0.0" + unist-util-stringify-position: "npm:^4.0.0" + vfile-message: "npm:^4.0.0" + checksum: 10/7f8412f9ce7709d3be4041fd68a159e2cf96f9c9a4f095bcb18d1561009757b8efb37b71d0ae087e5202fe0e3b3162aae0adf92e30e2448a45645912c23c4ab2 languageName: node linkType: hard @@ -14175,18 +14324,18 @@ __metadata: languageName: node linkType: hard -"ws@npm:8.5.0": - version: 8.5.0 - resolution: "ws@npm:8.5.0" +"ws@npm:8.17.1": + version: 8.17.1 + resolution: "ws@npm:8.17.1" peerDependencies: bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 + utf-8-validate: ">=5.0.2" peerDependenciesMeta: bufferutil: optional: true utf-8-validate: optional: true - checksum: 10/f0ee700970a0bf925b1ec213ca3691e84fb8b435a91461fe3caf52f58c6cec57c99ed5890fbf6978824c932641932019aafc55d864cad38ac32577496efd5d3a + checksum: 10/4264ae92c0b3e59c7e309001e93079b26937aab181835fb7af79f906b22cd33b6196d96556dafb4e985742dd401e99139572242e9847661fdbc96556b9e6902d languageName: node linkType: hard