-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.22 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
{
"name": "docs-panel",
"displayName": "Docs Panel",
"description": "Lists markdown files from your docs folder(s) in a left-hand panel and previews them.",
"version": "0.0.2",
"publisher": "nerdy-pro",
"license": "MIT",
"icon": "media/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/nerdy-pro/vs-code-docs-plugin.git"
},
"bugs": {
"url": "https://github.com/nerdy-pro/vs-code-docs-plugin/issues"
},
"homepage": "https://github.com/nerdy-pro/vs-code-docs-plugin#readme",
"keywords": [
"markdown",
"docs",
"documentation",
"explorer",
"sidebar",
"tree view"
],
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "docsPanel",
"title": "Docs",
"icon": "media/icon.svg"
}
]
},
"views": {
"docsPanel": [
{
"id": "docsPanelView",
"name": "Markdown Docs"
}
]
},
"viewsWelcome": [
{
"view": "docsPanelView",
"contents": "No workspace folder is open.\n[Open Folder](command:vscode.openFolder)",
"when": "workbenchState == empty"
},
{
"view": "docsPanelView",
"contents": "No markdown files were found.\nCreate a folder with the configured name or change it in settings.\n[Open Settings](command:docsPanel.openSettings)",
"when": "workbenchState != empty"
}
],
"commands": [
{
"command": "docsPanel.refresh",
"title": "Refresh",
"icon": "$(refresh)",
"category": "Docs Panel"
},
{
"command": "docsPanel.openSettings",
"title": "Open Settings",
"category": "Docs Panel"
}
],
"menus": {
"view/title": [
{
"command": "docsPanel.refresh",
"when": "view == docsPanelView",
"group": "navigation"
}
]
},
"configuration": {
"title": "Docs Panel",
"properties": {
"docsPanel.docsPath": {
"type": "string",
"default": "**/docs",
"description": "Path to the docs folder, relative to the workspace root. Accepts a comma-separated list to scan several locations. \"docs\" or \"/docs\" scans only that single folder at the root. Prefix an entry with \"**/\" (e.g. \"**/docs\") to instead search every matching folder anywhere in the workspace. If more than one folder is found across all entries, each appears as its own top-level group."
},
"docsPanel.skipPrivate": {
"type": "boolean",
"default": true,
"description": "Skip files and folders whose name starts with a dot (e.g. .obsidian, .draft.md) when scanning for docs."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile && node --test \"dist/test/**/*.test.js\"",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^3.9.2",
"typescript": "^5.4.0"
}
}