-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.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
{
"name": "docusaurus-plugin-generate-llms-txt",
"version": "0.0.1",
"description": "A docusaurus plugin that generates a concatenated markdown file from your documentation.",
"author": "din0s",
"license": "MIT",
"keywords": [
"docusaurus",
"docusaurus-plugin",
"documentation",
"markdown",
"llms.txt",
"llms-txt"
],
"repository": {
"type": "git",
"url": "git+https://github.com/din0s/docusaurus-plugin-generate-llms-txt.git"
},
"bugs": {
"url": "https://github.com/din0s/docusaurus-plugin-generate-llms-txt/issues"
},
"homepage": "https://github.com/din0s/docusaurus-plugin-generate-llms-txt#readme",
"main": "src/index.js",
"scripts": {
"format": "prettier --write .",
"test": "jest",
"test:watch": "jest --watch"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"<rootDir>/src/__tests__/**/*.test.js"
],
"transform": {}
},
"dependencies": {
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@docusaurus/core": "^3.6.1",
"@docusaurus/types": "^3.6.1",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"prettier": "^3.0.0"
},
"peerDependencies": {
"@docusaurus/core": ">=2.0.0"
},
"engines": {
"node": ">=18"
}
}