-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
143 lines (143 loc) · 3.7 KB
/
package.json
File metadata and controls
143 lines (143 loc) · 3.7 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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "recursive-markdown-generator",
"displayName": "Recursive Markdown Generator",
"description": "Recursively generate markdown from files in the current directory",
"version": "1.2.0",
"publisher": "getCurrentThread",
"author": {
"name": "getCurrentThread"
},
"license": "MIT",
"engines": {
"vscode": "^1.107.0"
},
"categories": [
"Other"
],
"keywords": [
"markdown",
"generator",
"recursive",
"documentation"
],
"icon": "media/icon.png",
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "recursive-markdown-generator",
"title": "Recursive Markdown Generator",
"icon": "media/icon.svg"
}
]
},
"views": {
"recursive-markdown-generator": [
{
"type": "webview",
"id": "recursiveMarkdownView",
"name": "Recursive Markdown"
}
]
},
"commands": [
{
"command": "recursive-markdown-generator.generate",
"title": "Generate Recursive Markdown",
"icon": "$(file-code)"
},
{
"command": "recursive-markdown-generator.download",
"title": "Download Markdown",
"icon": "$(cloud-download)"
}
],
"menus": {
"view/title": [
{
"command": "recursive-markdown-generator.generate",
"when": "view == recursiveMarkdownView",
"group": "navigation"
},
{
"command": "recursive-markdown-generator.download",
"when": "view == recursiveMarkdownView",
"group": "navigation"
}
]
},
"configuration": {
"title": "Recursive Markdown Generator",
"properties": {
"recursiveMarkdownGenerator.ignorePatterns": {
"type": "array",
"default": [
"generated_markdown.md",
".gitignore",
"*.db",
"LICENSE",
"package-lock.json",
"*.js.map",
"*.min.js",
".idea/",
".git/",
"node_modules/",
".gradle/",
".vscode/",
".vscodeignore"
],
"description": "Patterns to ignore when generating markdown"
},
"recursiveMarkdownGenerator.ignoreFiles": {
"type": "array",
"default": [
".gitignore",
".npmignore",
".ignore"
],
"description": "Files containing ignore patterns (e.g., .gitignore)"
},
"recursiveMarkdownGenerator.maxFileSize": {
"type": "number",
"default": 512000,
"description": "Maximum file size in bytes. Files larger than this will be skipped. (default: 512000 = 500KB)"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/vscode": "^1.107.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"@vscode/test-electron": "^2.3.8",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"@vscode/vsce": "^3.7.1"
},
"dependencies": {
"highlight.js": "^11.10.0",
"ignore": "^5.3.2",
"isbinaryfile": "^5.0.2",
"glob": "^10.5.0",
"mammoth": "^1.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/getCurrentThread/recursive-markdown-generator.git"
}
}