typedoc 0.28.14 → 0.28.16
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.
- package/dist/lib/cli.js +2 -1
- package/dist/lib/converter/comments/index.d.ts +3 -2
- package/dist/lib/converter/comments/index.js +69 -18
- package/dist/lib/converter/comments/parser.js +45 -21
- package/dist/lib/converter/comments/textParser.d.ts +13 -9
- package/dist/lib/converter/comments/textParser.js +21 -16
- package/dist/lib/converter/converter.js +1 -0
- package/dist/lib/converter/factories/signature.d.ts +1 -0
- package/dist/lib/converter/factories/signature.js +13 -0
- package/dist/lib/converter/jsdoc.d.ts +1 -1
- package/dist/lib/converter/jsdoc.js +33 -2
- package/dist/lib/converter/plugins/CommentPlugin.js +13 -0
- package/dist/lib/converter/plugins/ImplementsPlugin.d.ts +1 -0
- package/dist/lib/converter/plugins/ImplementsPlugin.js +23 -4
- package/dist/lib/converter/plugins/IncludePlugin.js +4 -0
- package/dist/lib/converter/plugins/SourcePlugin.js +3 -3
- package/dist/lib/converter/symbols.js +9 -22
- package/dist/lib/converter/utils/repository.js +3 -0
- package/dist/lib/internationalization/locales/en.cjs +1 -0
- package/dist/lib/internationalization/locales/en.d.cts +1 -0
- package/dist/lib/models/Comment.d.ts +1 -1
- package/dist/lib/models/Comment.js +1 -1
- package/dist/lib/models/DeclarationReflection.d.ts +7 -0
- package/dist/lib/models/DeclarationReflection.js +9 -0
- package/dist/lib/output/events.d.ts +2 -0
- package/dist/lib/output/events.js +1 -0
- package/dist/lib/output/plugins/JavascriptIndexPlugin.js +1 -1
- package/dist/lib/output/themes/MarkedPlugin.js +15 -8
- package/dist/lib/output/themes/default/partials/icon.js +1 -1
- package/dist/lib/output/themes/default/partials/member.js +1 -0
- package/dist/lib/output/themes/default/partials/moduleReflection.js +1 -0
- package/dist/lib/output/themes/default/partials/navigation.js +1 -1
- package/dist/lib/serialization/schema.d.ts +1 -1
- package/dist/lib/utils/entry-point.js +1 -1
- package/dist/lib/utils/options/declaration.d.ts +4 -0
- package/dist/lib/utils/options/sources/typedoc.js +1 -0
- package/dist/lib/utils/options/tsdoc-defaults.d.ts +2 -2
- package/dist/lib/utils/options/tsdoc-defaults.js +1 -1
- package/dist/lib/utils-common/jsx.elements.d.ts +1 -0
- package/dist/lib/utils-common/logger.d.ts +12 -1
- package/dist/lib/utils-common/logger.js +9 -0
- package/dist/lib/utils-common/set.d.ts +1 -0
- package/dist/lib/utils-common/set.js +7 -0
- package/dist/lib/validation/documentation.js +2 -2
- package/dist/lib/validation/exports.js +2 -2
- package/dist/lib/validation/links.js +7 -7
- package/package.json +16 -14
- package/static/style.css +3 -3
- package/tsdoc.json +0 -4
- package/typedoc-config.schema.json +941 -0
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typedoc",
|
|
3
3
|
"description": "Create api documentation for TypeScript projects.",
|
|
4
|
-
"version": "0.28.
|
|
4
|
+
"version": "0.28.16",
|
|
5
5
|
"homepage": "https://typedoc.org",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": "./dist/index.js",
|
|
9
9
|
"./tsdoc.json": "./tsdoc.json",
|
|
10
|
+
"./typedoc-config.schema.json": "./typedoc-config.schema.json",
|
|
10
11
|
"./package.json": "./package.json",
|
|
11
12
|
"./models": "./dist/lib/models/index.js",
|
|
12
13
|
"./browser": "./dist/browser-utils.js",
|
|
@@ -31,7 +32,7 @@
|
|
|
31
32
|
"pnpm": ">= 10"
|
|
32
33
|
},
|
|
33
34
|
"dependencies": {
|
|
34
|
-
"@gerrit0/mini-shiki": "^3.
|
|
35
|
+
"@gerrit0/mini-shiki": "^3.17.0",
|
|
35
36
|
"lunr": "^2.3.9",
|
|
36
37
|
"markdown-it": "^14.1.0",
|
|
37
38
|
"minimatch": "^9.0.5",
|
|
@@ -41,22 +42,22 @@
|
|
|
41
42
|
"typescript": "5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x || 5.8.x || 5.9.x"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
44
|
-
"@eslint/js": "^9.
|
|
45
|
+
"@eslint/js": "^9.39.1",
|
|
45
46
|
"@types/lunr": "^2.3.7",
|
|
46
47
|
"@types/markdown-it": "^14.1.2",
|
|
47
48
|
"@types/mocha": "^10.0.10",
|
|
48
49
|
"@types/node": "18",
|
|
49
50
|
"@typestrong/fs-fixture-builder": "github:TypeStrong/fs-fixture-builder#34113409e3a171e68ce5e2b55461ef5c35591cfe",
|
|
50
51
|
"c8": "^10.1.3",
|
|
51
|
-
"dprint": "^0.50.
|
|
52
|
-
"esbuild": "^0.
|
|
53
|
-
"eslint": "^9.
|
|
54
|
-
"mocha": "^11.7.
|
|
55
|
-
"puppeteer": "^24.
|
|
56
|
-
"semver": "^7.7.
|
|
57
|
-
"tsx": "^4.20.
|
|
58
|
-
"typescript": "5.9.
|
|
59
|
-
"typescript-eslint": "^8.
|
|
52
|
+
"dprint": "^0.50.2",
|
|
53
|
+
"esbuild": "^0.27.0",
|
|
54
|
+
"eslint": "^9.39.1",
|
|
55
|
+
"mocha": "^11.7.5",
|
|
56
|
+
"puppeteer": "^24.31.0",
|
|
57
|
+
"semver": "^7.7.3",
|
|
58
|
+
"tsx": "^4.20.6",
|
|
59
|
+
"typescript": "5.9.3",
|
|
60
|
+
"typescript-eslint": "^8.48.0"
|
|
60
61
|
},
|
|
61
62
|
"files": [
|
|
62
63
|
"/bin",
|
|
@@ -67,7 +68,8 @@
|
|
|
67
68
|
"!/dist/test",
|
|
68
69
|
"/LICENSE",
|
|
69
70
|
"/static",
|
|
70
|
-
"/tsdoc.json"
|
|
71
|
+
"/tsdoc.json",
|
|
72
|
+
"/typedoc-config.schema.json"
|
|
71
73
|
],
|
|
72
74
|
"keywords": [
|
|
73
75
|
"typescript",
|
|
@@ -121,7 +123,7 @@
|
|
|
121
123
|
"build:tsc": "tsc --project .",
|
|
122
124
|
"build:themes": "node scripts/build_themes.js",
|
|
123
125
|
"build:locales": "node scripts/build_browser_translations.js",
|
|
124
|
-
"build:prod": "pnpm build:prod:tsc && pnpm build:locales && pnpm build:themes",
|
|
126
|
+
"build:prod": "pnpm build:prod:tsc && pnpm build:locales && pnpm build:themes && node scripts/generate_options_schema.js typedoc-config.schema.json",
|
|
125
127
|
"build:prod:tsc": "tsc --project . --sourceMap false --declarationMap false",
|
|
126
128
|
"lint": "eslint . --max-warnings 0 && dprint check"
|
|
127
129
|
}
|
package/static/style.css
CHANGED