-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.23 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@knodes/typedoc-plugin-code-blocks",
"version": "0.23.4",
"description": "A TypeDoc plugin to embed source code into your output documentation",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KnodesCommunity/typedoc-plugins.git"
},
"bugs": {
"url": "https://github.com/KnodesCommunity/typedoc-plugins/issues"
},
"homepage": "https://knodescommunity.github.io/typedoc-plugins/modules/_knodes_typedoc_plugin_code_blocks.html",
"author": {
"email": "[email protected]",
"name": "GerkinDev"
},
"keywords": [
"code",
"documentation",
"plugin",
"typedoc",
"typedoc-plugin",
"typedocplugin"
],
"main": "dist/index.js",
"files": [
"dist",
"src",
"static"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"build:clean": "rimraf dist",
"lint": "eslint --ignore-path ../../.eslintignore '**/?(.)*.?([cm])[tj]s?(x)'",
"prepublishOnly": "npm run build:clean && npm run build",
"test": "jest --config jest.config.mjs"
},
"dependencies": {
"lodash": "^4.17.21",
"@knodes/typedoc-pluginutils": "~0.23.4"
},
"peerDependencies": {
"typedoc": "^0.23.0",
"minimatch": "^5.1.0 || ^8.0.0 || ^9.0.0"
},
"devDependencies": {
"@knodes/eslint-config": "^1.6.5",
"@testing-library/jest-dom": "^6.0.0",
"@types/jest": "^29.0.0",
"@types/jsdom": "^21.0.0",
"@types/lodash": "^4.14.182",
"@types/node": "^20.0.0",
"@types/react": "^18.0.14",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sort-export-all": "^1.2.2",
"jest": "^29.0.0",
"jest-extended": "^4.0.0",
"jest-junit": "^16.0.0",
"jsdom": "^24.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.0.0",
"typedoc": "^0.23.28",
"typescript": "~5.5.0",
"@types/minimatch": "^5.0.0",
"@types/marked": "^6.0.0",
"@types/mock-fs": "^4.13.1",
"conventional-changelog-cli": "^3.0.0"
}
}