typedoc-github-theme 0.2.0 → 0.2.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.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 KillerJulian
3
+ Copyright (c) 2024 Julian Wowra (development@julianwowra.de)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -6,7 +6,7 @@ This [TypeDoc](https://github.com/TypeStrong/typedoc) theme is designed to provi
6
6
 
7
7
  ## Example
8
8
 
9
- [![Example](./example.png)](https://killerjulian.github.io/typedoc-github-theme/)
9
+ [![Example](./example.png)](https://julianwowra.github.io/typedoc-github-theme/)
10
10
 
11
11
  ## Usage
12
12
 
@@ -38,10 +38,10 @@ npx typedoc src --plugin typedoc-github-theme
38
38
 
39
39
  ## Author
40
40
 
41
- 👤 **KillerJulian <info@killerjulian.de>**
41
+ 👤 **Julian Wowra <development@julianwowra.de>**
42
42
 
43
- - Github: [@KillerJulian](https://github.com/KillerJulian)
43
+ - Github: [@JulianWowra](https://github.com/JulianWowra)
44
44
 
45
45
  ## 🤝 Contributing
46
46
 
47
- Contributions, issues and feature requests are welcome!<br />Feel free to check the [issues page](https://github.com/KillerJulian/typedoc-github-theme/issues). You can also take a look at the [contributing guide](https://github.com/KillerJulian/typedoc-github-theme/blob/master/CONTRIBUTING.md).
47
+ Contributions, issues and feature requests are welcome!<br />Feel free to check the [issues page](https://github.com/JulianWowra/typedoc-github-theme/issues). You can also take a look at the [contributing guide](https://github.com/JulianWowra/typedoc-github-theme/blob/master/CONTRIBUTING.md).
@@ -14,7 +14,7 @@ function generatorDisplay(context) {
14
14
  'Generated using ',
15
15
  JSX.createElement("a", { href: "https://typedoc.org/", target: "_blank" }, "TypeDoc"),
16
16
  ' with ',
17
- JSX.createElement("a", { href: "https://github.com/KillerJulian/typedoc-github-theme", target: "_blank" }, "typedoc-github-theme")));
17
+ JSX.createElement("a", { href: "https://github.com/JulianWowra/typedoc-github-theme", target: "_blank" }, "typedoc-github-theme")));
18
18
  }
19
19
  function customFooterDisplay(context) {
20
20
  const customFooterHtml = context.options.getValue('customFooterHtml');
package/package.json CHANGED
@@ -1,27 +1,30 @@
1
1
  {
2
2
  "name": "typedoc-github-theme",
3
3
  "description": "Elegant and seamless look and feel for your TypeScript documentation on GitHub Pages",
4
- "version": "0.2.0",
4
+ "version": "0.2.1",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "type": "module",
8
- "repository": "https://github.com/KillerJulian/typedoc-github-theme",
9
- "homepage": "https://killerjulian.github.io/typedoc-github-theme/",
10
- "author": "KillerJulian <info@killerjulian.de>",
8
+ "repository": "https://github.com/JulianWowra/typedoc-github-theme",
9
+ "homepage": "https://julianwowra.github.io/typedoc-github-theme/",
10
+ "author": "Julian Wowra <development@julianwowra.de>",
11
11
  "license": "MIT",
12
- "packageManager": "pnpm@9.14.3",
12
+ "publishConfig": {
13
+ "provenance": true
14
+ },
15
+ "packageManager": "pnpm@9.15.2",
13
16
  "dependencies": {},
14
17
  "peerDependencies": {
15
- "typedoc": "^0.27.1"
18
+ "typedoc": "^0.27.6"
16
19
  },
17
20
  "devDependencies": {
18
- "@types/node": "^18.19.67",
19
- "eslint": "9.15.0",
21
+ "@types/node": "^18.19.69",
22
+ "eslint": "9.17.0",
20
23
  "eslint-config-prettier": "9.1.0",
21
- "prettier": "3.4.1",
22
- "typedoc": "~0.27.1",
24
+ "prettier": "3.4.2",
25
+ "typedoc": "~0.27.6",
23
26
  "typescript": "5.7.2",
24
- "typescript-eslint": "8.16.0"
27
+ "typescript-eslint": "8.19.0"
25
28
  },
26
29
  "scripts": {
27
30
  "build": "pnpm build:lib && pnpm build:docs",