-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "typedoc-plugin-extras",
"version": "4.0.0",
"description": "A TypeDoc plugin to add extras (favicon, description, generation date...) to the output documentation",
"type": "module",
"main": "./dist/main.js",
"exports": "./dist/main.js",
"types": "./dist/main.d.ts",
"files": [
"dist/"
],
"scripts": {
"start": "tsc --watch",
"pretest": "npm link && npm link typedoc-plugin-extras",
"test": "typedoc --plugin typedoc-plugin-extras --favicon public/favicon.ico --footerLastModified --footerTypedocVersion src/main.ts",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"author": "Corentin Girard",
"license": "MIT",
"bugs": {
"url": "https://github.com/Drarig29/typedoc-plugin-extras/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Drarig29/typedoc-plugin-extras.git"
},
"keywords": [
"date",
"time",
"favicon",
"typescript",
"documentation",
"typedocplugin",
"typedoc"
],
"peerDependencies": {
"typedoc": "0.27.x"
},
"devDependencies": {
"@types/node": "^18.15.11",
"typescript": "^5.5.2"
}
}