-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 837 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 837 Bytes
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
{
"name": "docs2context",
"version": "0.1.0",
"description": "CLI tool to scrape and aggregate documentation into a single markdown file",
"main": "src/index.js",
"bin": {
"docs2context": "./bin/docs2context.js"
},
"type": "module",
"scripts": {
"start": "node bin/docs2context.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"documentation",
"scraper",
"cli",
"markdown"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.7",
"chalk": "^5.3.0",
"cheerio": "^1.0.0-rc.12",
"commander": "^12.0.0",
"duck-duck-scrape": "^2.2.7",
"figlet": "^1.7.0",
"inquirer": "^9.2.15",
"node-html-markdown": "^1.3.0",
"openai": "^4.85.4",
"ora": "^8.0.1",
"p-queue": "^8.1.0",
"winston": "^3.11.0"
}
}