-
Notifications
You must be signed in to change notification settings - Fork 2
/
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-replace-text",
"type": "module",
"version": "4.1.0",
"description": "Plugin for TypeDoc that replaces text in the documentation",
"author": {
"name": "Krisztián Balla",
"url": "https://github.com/krisztianb"
},
"license": "ISC",
"keywords": [
"typedoc-plugin",
"typedocplugin"
],
"devDependencies": {
"@types/node": "20.14.10",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"cypress": "13.16.1",
"eslint": "8.57.1",
"eslint-plugin-jsdoc": "50.6.0",
"eslint-plugin-ordered-imports": "0.6.0",
"eslint-plugin-unicorn": "56.0.1",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"typedoc": "0.27.4",
"typescript": "5.6.3"
},
"peerDependencies": {
"typedoc": "0.26.x || 0.27.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krisztianb/typedoc-plugin-replace-text.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"
}
}