-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.42 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
{
"name": "markdown-outline",
"displayName": "Markdown Outline",
"description": "Resizable and collapsible outline panel for VS Code Markdown preview.",
"version": "0.1.0",
"publisher": "RobinZhao",
"license": "MIT",
"icon": "media/branding/icon-tech-blueprint.png",
"galleryBanner": {
"color": "#0F172A",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/Robin-zero/MD-Outline.git"
},
"homepage": "https://github.com/Robin-zero/MD-Outline#readme",
"bugs": {
"url": "https://github.com/Robin-zero/MD-Outline/issues"
},
"keywords": [
"markdown",
"outline",
"toc",
"preview",
"navigation"
],
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:markdown"
],
"main": "./dist/extension.js",
"contributes": {
"markdown.previewStyles": [
"./media/preview-outline.css"
],
"markdown.previewScripts": [
"./media/preview-outline.js"
]
},
"scripts": {
"compile": "tsc -p .",
"watch": "tsc -w -p .",
"pretest": "npm run compile",
"test": "node ./dist/test/outlineParser.test.js",
"vscode:prepublish": "npm run compile",
"package": "npx.cmd @vscode/vsce package",
"publish": "npx.cmd @vscode/vsce publish"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@types/vscode": "^1.85.0",
"typescript": "^5.5.4"
}
}