diff --git a/package.json b/package.json index c91786e..0c16879 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,11 @@ { "author": "Ayfri ", "dependencies": { - "typedoc": "^0.21.9", - "typedoc-darker-theme": "^1.2.1", - "typedoc-plugin-sourcefile-url": "^1.0.6", - "typescript": "^4.4.4" + "typedoc": "0.25.8", + "typedoc-darker-theme": "1.2.1", + "typedoc-github-wiki-theme": "1.1.0", + "typedoc-plugin-sourcefile-url": "1.0.6", + "typescript": "5.3.3" }, "description": "The official documentation for Advanced-Command-Handler.", "license": "GNU", @@ -12,8 +13,8 @@ "private": true, "repository": "https://github.com/Advanced-Command-Handler/docs.git", "scripts": { - "generateMaster": "typedoc --options typedoc_master.json --sourcefile-url-map mappings.json", - "generateRelease": "typedoc --options typedoc_release.json --sourcefile-url-map mappings.json", + "generateMaster": "typedoc --options typedoc_master.json", + "generateRelease": "typedoc --options typedoc_release.json", "watch": "npm run generateMaster -- --watch" }, "version": "1.1.0" diff --git a/typedoc_master.json b/typedoc_master.json index 7a5762e..b10573d 100644 --- a/typedoc_master.json +++ b/typedoc_master.json @@ -3,17 +3,17 @@ "source/src/index.ts" ], "gitRemote": "https://github.com/Advanced-Command-Handler/Advanced-Command-Handler", - "highlightTheme": "github-dark", + "darkHighlightTheme": "github-dark", "includeVersion": true, "name": "Advanced Command-Handler", "out": "docs-master", - "readme": "https://github.com/Advanced-Command-Handler/Advanced-Command-Handler/README.md", + "readme": "source/README.md", "sort": [ "static-first", "visibility", "alphabetical", "enum-value-descending" ], - "theme": "./node_modules/typedoc-darker-theme/bin/default", - "tsconfig": "source/src/tsconfig.json" + "theme": "default", + "tsconfig": "source/tsconfig.json" }