-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 992 Bytes
/
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
{
"name": "typedoc-plugin-ghpages-cname",
"version": "1.1.0",
"description": "Generates a CNAME file inside the docs folder for Github Pages",
"keywords": [
"cname",
"github",
"pages",
"typescript",
"documentation",
"typedocplugin",
"typedoc"
],
"main": "dist/index.js",
"scripts": {
"test": "npx typedoc --plugin . && rm -rf docs",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"author": {
"name": "Tane Piper",
"url": "https://tane.dev"
},
"homepage": "https://github.com/tanepiper/typedoc-plugin-ghpages-cname",
"bugs": {
"url": "https://github.com/tanepiper/typedoc-plugin-ghpages-cname/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tanepiper/typedoc-plugin-ghpages-cname.git"
},
"license": "MIT",
"peerDependencies": {
"typedoc": "^0.22.0"
},
"devDependencies": {
"@types/node": "^14.17.18",
"typedoc": "~0.22.0",
"typescript": "~4.4.3"
}
}