-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"name": "typedoc-plugin-version-select",
"version": "2.0.0-dev",
"description": "Typedoc plugin to add a version selector next to the title",
"type": "module",
"main": "dist/index.js",
"author": "James Lan",
"license": "Apache-2.0",
"homepage": "https://jameslan.github.io/typedoc-plugin-version-select/",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jameslan/typedoc-plugin-version-select.git"
},
"files": [
"dist"
],
"scripts": {
"build": "mkdir -p dist/assets && cp src/assets/* dist/assets/ && tsc",
"cov": "c8 mocha",
"prepublishOnly": "npm run build",
"test": "npm run cov",
"doc": "typedoc"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.7",
"@types/sinon": "^17.0.3",
"c8": "^10.1.3",
"chai": "^5.1.2",
"mocha": "^11.1.0",
"sinon": "^19.0.2",
"tmp": "^0.2.3",
"ts-node": "^10.9.2",
"typedoc": "^0.28.0",
"typescript": "^5.7.3"
},
"peerDependencies": {
"typedoc": ">=0.27.0 <0.29.0"
},
"dependencies": {
"mustache": "^4.2.0"
}
}