diff --git a/src/interfaces/bugs-object.ts b/src/interfaces/bugs-object.ts index 2c7e451..838bbe3 100644 --- a/src/interfaces/bugs-object.ts +++ b/src/interfaces/bugs-object.ts @@ -7,7 +7,7 @@ * Object containing the URL to the package's issue tracker and/or the email * address to which issues should be reported. * - * @see https://docs.npmjs.com/cli/configuring-npm/package-json#bugs + * @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#bugs */ interface BugsObject { /** diff --git a/src/interfaces/funding-object.ts b/src/interfaces/funding-object.ts index f3668bb..c49003b 100644 --- a/src/interfaces/funding-object.ts +++ b/src/interfaces/funding-object.ts @@ -8,7 +8,7 @@ import type { FundingType } from '#src/types' /** * Object containing information about how to support a package monetarily. * - * @see https://docs.npmjs.com/cli/configuring-npm/package-json#funding + * @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#funding */ interface FundingObject { /** diff --git a/src/types/bin.ts b/src/types/bin.ts index 4fb5e41..7c987b5 100644 --- a/src/types/bin.ts +++ b/src/types/bin.ts @@ -8,7 +8,7 @@ import type DependencyMap from './dependency-map' /** * Executable files to install into `PATH`. * - * @see https://docs.npmjs.com/cli/configuring-npm/package-json#bin + * @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#bin * @see https://yarnpkg.com/configuration/manifest#bin */ type Bin = DependencyMap | string diff --git a/src/types/browser.ts b/src/types/browser.ts index 921c4d5..df42163 100644 --- a/src/types/browser.ts +++ b/src/types/browser.ts @@ -9,7 +9,7 @@ import type DependencyMap from './dependency-map' * Hint to JavaScript bundlers or component tools when packaging modules for * client side use. * - * @see https://docs.npmjs.com/cli/configuring-npm/package-json#browser + * @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#browser * @see https://yarnpkg.com/configuration/manifest#publishConfig.browser */ type Browser = DependencyMap | string diff --git a/src/types/cpu.ts b/src/types/cpu.ts index 1b6c1e6..3f0550c 100644 --- a/src/types/cpu.ts +++ b/src/types/cpu.ts @@ -8,7 +8,7 @@ import type { EmptyString, LiteralUnion } from '@flex-development/tutils' /** * CPU architectures a package runs on. * - * @see https://docs.npmjs.com/cli/configuring-npm/package-json#cpu + * @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#cpu * @see https://yarnpkg.com/configuration/manifest */ type CPU = LiteralUnion< diff --git a/src/types/engine.ts b/src/types/engine.ts index 875cae0..ee9a1c5 100644 --- a/src/types/engine.ts +++ b/src/types/engine.ts @@ -8,7 +8,7 @@ import type { LiteralUnion } from '@flex-development/tutils' /** * Engines a package runs on. * - * @see https://docs.npmjs.com/cli/configuring-npm/package-json#engines + * @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#engines */ type Engine = LiteralUnion<'node' | 'npm' | 'yarn', string> diff --git a/src/types/os.ts b/src/types/os.ts index 1ef2eb8..49f117f 100644 --- a/src/types/os.ts +++ b/src/types/os.ts @@ -8,7 +8,7 @@ import type { EmptyString, LiteralUnion } from '@flex-development/tutils' /** * Operating system platforms a package runs on. * - * @see https://docs.npmjs.com/cli/configuring-npm/package-json#os + * @see https://docs.npmjs.com/cli/v9/configuring-npm/package-json#os * @see https://yarnpkg.com/configuration/manifest#os */ type OS = LiteralUnion<