typedoc-plugin-mdn-links
Version:
Adds support for linking references to global types like `HTMLElement`, `WebAssembly`, and `Date` to their documentation pages on MDN.
41 lines • 940 B
JSON
{
"name": "typedoc-plugin-mdn-links",
"version": "5.1.1",
"main": "dist/index.js",
"type": "module",
"license": "MIT",
"devDependencies": {
"@mdn/browser-compat-data": "7.2.5",
"@types/node": "^22.16.0",
"@webgpu/types": "^0.1.63",
"dprint": "^0.49.1",
"typedoc": "^0.28.7",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"keywords": [
"typedoc-plugin"
],
"files": [
"dist/index.js",
"dist/typescript.js",
"dist/webApi.js",
"data/web-api.json"
],
"peerDependencies": {
"typedoc": "0.27.x || 0.28.x"
},
"repository": {
"type": "git",
"url": "https://github.com/Gerrit0/typedoc-plugin-mdn-links.git"
},
"bugs": {
"url": "https://github.com/Gerrit0/typedoc-plugin-mdn-links/issues"
},
"scripts": {
"lint": "dprint check",
"build": "tsc",
"generateWebApiIndex": "node ./scripts/generateWebApiIndex.js",
"test": "vitest run"
}
}