typedoc-plugin-hash-link-references 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +15 -5
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://www.schemastore.org/package.json",
3
3
  "name": "typedoc-plugin-hash-link-references",
4
- "version": "1.0.0",
4
+ "version": "1.0.1",
5
5
  "private": false,
6
6
  "description": "TypeDoc plugin that rewrites VS Code-friendly path#Symbol links into TypeDoc path!Symbol declaration references.",
7
7
  "keywords": [
@@ -67,25 +67,31 @@
67
67
  "docs:start": "npm run --workspace docs/docusaurus start",
68
68
  "docs:typecheck": "npm run --workspace docs/docusaurus typecheck",
69
69
  "lint": "npx -y eslint . --cache --cache-strategy content --cache-location .cache/.eslintcache",
70
+ "lint:attw": "npx -y attw --pack . --profile esm-only",
70
71
  "lint:css": "npx -y stylelint --cache --config stylelint.config.mjs --cache-strategy content --cache-location .cache/stylelintcache \"docs/docusaurus/src/**/*.css\"",
71
72
  "lint:css:fix": "npx -y stylelint --cache --config stylelint.config.mjs --cache-strategy content --cache-location .cache/stylelintcache \"docs/docusaurus/src/**/*.css\" --fix",
73
+ "lint:gitleaks": "gitleaks dir --config .gitleaks.toml .",
72
74
  "lint:package": "npx -y sort-package-json --check package.json docs/docusaurus/package.json && npx -y npmPkgJsonLint . --configFile .npmpackagejsonlintrc.json --ignorePath .npmpackagejsonlintignore",
73
75
  "lint:package:fix": "npx -y sort-package-json package.json docs/docusaurus/package.json",
76
+ "lint:package:strict": "npm run package:check && npm run lint:publint && npm run lint:attw && npm run lint:package",
77
+ "lint:package-check": "npm run package:check && npm run lint:publint && npm run lint:attw",
74
78
  "lint:prettier": "npx -y prettier . --log-level warn --cache --cache-location=.cache/.prettier-cache --cache-strategy=content --check",
75
79
  "lint:prettier:fix": "npx -y prettier . --log-level warn --cache --cache-location=.cache/.prettier-cache --cache-strategy=content --write",
76
80
  "lint:publint": "npx -y publint",
77
81
  "lint:remark": "remark . --frail --ignore-path .remarkignore",
78
82
  "lint:remark:fix": "remark . --ignore-path .remarkignore --output",
79
83
  "prepack": "npm run build",
80
- "package:check": "npm pack --dry-run && npx -y publint && npx -y attw --pack . --profile esm-only",
84
+ "package:check": "npm pack --dry-run",
81
85
  "prepublishOnly": "npm run release:check",
82
86
  "release:check": "npm run release:verify",
83
- "release:verify": "npm run lint && npm run lint:css && npm run typecheck && npm run test && npm run docs:build && npm run lint:remark && npm run lint:prettier && npm run lint:package && npm run package:check",
87
+ "release:verify": "npm run sync:peer-typedoc-range && npm run sync:node-version-files && npm run lint && npm run lint:css && npm run typecheck && npm run test && npm run docs:build && npm run lint:remark && npm run lint:prettier && npm run lint:package && npm run lint:package-check && npm run lint:gitleaks",
88
+ "sync:node-version-files": "node scripts/sync-node-version-files.mjs",
89
+ "sync:peer-typedoc-range": "node scripts/sync-peer-typedoc-range.mjs",
84
90
  "test": "npm run build && npx -y vitest run",
85
91
  "typecheck": "npx -y tsc -p tsconfig.json --noEmit && npm run docs:typecheck",
86
92
  "types:update": "npx typesync",
87
93
  "update-actions": "npx actions-up --yes --style sha",
88
- "update-deps": "npx ncu -i --install never && npm update --force && npm install --force",
94
+ "update-deps": "npx ncu -i --install never && npm update --force && npm install --force && npm run sync:peer-typedoc-range && npm run sync:node-version-files",
89
95
  "verify": "npm run release:verify"
90
96
  },
91
97
  "dependencies": {
@@ -93,11 +99,13 @@
93
99
  },
94
100
  "devDependencies": {
95
101
  "@arethetypeswrong/cli": "^0.18.3",
102
+ "@microsoft/tsdoc-config": "^0.18.1",
96
103
  "@types/node": "^25.9.3",
97
104
  "@vitest/coverage-v8": "^4.1.9",
98
105
  "eslint": "^10.5.0",
99
106
  "eslint-config-nick2bad4u": "^2.0.0",
100
107
  "git-cliff": "^2.13.1",
108
+ "gitleaks-config-nick2bad4u": "^1.0.2",
101
109
  "npm-package-json-lint": "^10.4.1",
102
110
  "npm-package-json-lint-config-nick2bad4u": "^1.0.3",
103
111
  "prettier": "^3.8.4",
@@ -109,12 +117,14 @@
109
117
  "sort-package-json": "^4.0.0",
110
118
  "stylelint": "^17.13.0",
111
119
  "stylelint-config-nick2bad4u": "^1.0.19",
120
+ "tsdoc-config-nick2bad4u": "^1.0.5",
112
121
  "typedoc": "^0.28.19",
122
+ "typedoc-config-nick2bad4u": "^1.1.0",
113
123
  "typescript": "^6.0.3",
114
124
  "vitest": "^4.1.9"
115
125
  },
116
126
  "peerDependencies": {
117
- "typedoc": ">=0.28.0"
127
+ "typedoc": "^0.28.19"
118
128
  },
119
129
  "packageManager": "npm@11.17.0",
120
130
  "engines": {