-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
37 lines (36 loc) · 836 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
{
"name": "typedoc-plugin-external-module-map",
"version": "2.2.0",
"description": "Specify the Typedoc Module of a file using a regular expression on the filename",
"type": "module",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"prepublish": "npm run build"
},
"keywords": [
"typedocplugin",
"typedoc"
],
"repository": {
"type": "git",
"url": "https://github.com/asgerjensen/typedoc-plugin-external-module-map"
},
"author": "Asger Jensen <[email protected]>",
"license": "MIT",
"peerDependencies": {
"typedoc": ">=0.27 <2.0"
},
"devDependencies": {
"typedoc": "^0.27.0",
"typescript": "^5.6.0"
},
"dependencies": {
"@types/node": "^20.14.14"
}
}