-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
112 lines (112 loc) · 2.48 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "docs-miner",
"displayName": "Docs Miner",
"description": "Generate markdown documentation from web pages and GitHub repositories",
"version": "1.8.0",
"publisher": "3choff",
"icon": "media/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/3choff/docs-miner"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Education",
"Programming Languages",
"Snippets",
"Other"
],
"activationEvents": [
"onView:docsMinerView"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "docs-miner-sidebar",
"title": "Docs Miner",
"icon": "media/icon.svg"
}
]
},
"views": {
"docs-miner-sidebar": [
{
"id": "docsMinerView",
"name": "Docs Miner",
"type": "webview"
}
]
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"@types/jsdom": "^21.1.7",
"axios": "^1.7.4",
"cheerio": "^1.0.0",
"jsdom": "^22.1.0",
"puppeteer-chromium-resolver": "^23.0.0",
"puppeteer-core": "^22.8.2",
"turndown": "^7.2.0"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@types/turndown": "^5.0.5",
"@types/vscode": "^1.80.0",
"copy-webpack-plugin": "^11.0.0",
"ts-loader": "^9.5.1",
"typescript": "^4.5.5",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"license": "MIT",
"keywords": [
"documentation",
"repository",
"github",
"github repository",
"github repositories",
"github docs",
"github documentation",
"markdown",
"web page",
"web pages",
"web page to markdown",
"web pages to markdown",
"webpage",
"webpages",
"webpage to markdown",
"webpages to markdown",
"url",
"urls",
"url to markdown",
"urls to markdown",
"docs",
"crawler",
"scraper",
"web scraping",
"documentation generator",
"markdown converter",
"api docs",
"api documentation",
"docs to markdown",
"website to markdown",
"documentation tool",
"technical documentation",
"documentation export",
"offline docs",
"documentation crawler",
"docs scraper",
"markdown generator",
"documentation mining"
]
}