-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.23 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
48
49
50
51
52
53
54
55
56
{
"name": "docusaurus-llms-txt",
"version": "1.4.1",
"description": "Docusaurus plugin to generate llms.txt and llms-full.txt context files for AI agents (RAG)",
"keywords": [
"docusaurus",
"plugin",
"llm",
"ai",
"documentation",
"rag",
"context",
"openai",
"anthropic"
],
"homepage": "https://github.com/Tithos/docusaurus-plugin-llms-txt#readme",
"bugs": {
"url": "https://github.com/Tithos/docusaurus-plugin-llms-txt/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tithos/docusaurus-plugin-llms-txt.git"
},
"license": "MIT",
"author": "Tithos",
"main": "src/index.js",
"types": "src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"require": "./src/index.js",
"default": "./src/index.js"
}
},
"files": [
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "echo 'No build step required for this plugin'",
"test": "node test-plugin.js"
},
"peerDependencies": {
"@docusaurus/core": "^3.0.0"
},
"dependencies": {
"glob": "^10.0.0",
"gray-matter": "^4.0.0",
"vercel": "^41.0.2"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.20.0"
}