-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 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
45
46
47
{
"name": "typedoc-plugin-merge-modules",
"version": "6.1.0",
"type": "module",
"description": "Plugin for TypeDoc that merges the content of modules.",
"author": {
"name": "Krisztián Balla",
"url": "https://github.com/krisztianb"
},
"license": "ISC",
"keywords": [
"typedoc-plugin",
"typedocplugin"
],
"devDependencies": {
"@types/node": "20.14.9",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1",
"cypress": "13.16.0",
"eslint": "8.56.0",
"eslint-plugin-jsdoc": "48.5.0",
"eslint-plugin-ordered-imports": "0.6.0",
"eslint-plugin-unicorn": "54.0.0",
"prettier": "3.4.1",
"rimraf": "6.0.1",
"typedoc": "0.27.2",
"typescript": "5.6.3"
},
"peerDependencies": {
"typedoc": "0.26.x || ^0.27.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krisztianb/typedoc-plugin-merge-modules.git"
},
"main": "dist/index.js",
"files": [
"/dist",
"CHANGELOG.md"
],
"scripts": {
"lint": "eslint ./src ./test",
"format": "prettier --check ./src ./test",
"build": "rimraf dist && tsc",
"test": "cd test && node prepare_test.js && node test.js"
}
}