forked from FlyNumber/markdown_docusaurus_plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.07 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.07 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
44
45
46
47
{
"name": "docusaurus-markdown-source-plugin",
"version": "2.0.1",
"description": "A lightweight Docusaurus plugin that exposes your markdown files as raw .md URLs, perfect for LLMs and documentation tools",
"main": "index.js",
"keywords": [
"docusaurus",
"docusaurus-plugin",
"markdown",
"llm",
"documentation",
"ai",
"claude",
"chatgpt",
"markdown-source",
"raw-markdown"
],
"author": "FlyNumber",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/FlyNumber/markdown_docusaurus_plugin.git"
},
"bugs": {
"url": "https://github.com/FlyNumber/markdown_docusaurus_plugin/issues"
},
"homepage": "https://github.com/FlyNumber/markdown_docusaurus_plugin#readme",
"peerDependencies": {
"@docusaurus/core": "^3.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"fs-extra": "^11.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"index.js",
"theme/",
"components/",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
}