-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.37 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.37 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
{
"publisher": "doocs",
"name": "doocs-md",
"displayName": "doocs-md",
"version": "0.0.1",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/doocs/md"
},
"categories": [
"Other"
],
"main": "./dist/extension.js",
"engines": {
"vscode": "^1.91.0"
},
"activationEvents": [],
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "markdown-sidebar",
"title": "Markdown Preview",
"icon": "./public/icon-256-gray.png"
}
]
},
"views": {
"markdown-sidebar": [
{
"id": "markdown.preview.view",
"name": "Preview",
"icon": "./public/icon-256-gray.png"
}
]
},
"commands": [
{
"command": "markdown.preview",
"title": "Open Markdown Preview",
"icon": {
"light": "./public/icon-256-gray.png",
"dark": "./public/icon-256-gray.png"
}
},
{
"command": "markdown.setFontFamily",
"title": "Set Font Family",
"category": "Markdown Preview"
},
{
"command": "markdown.toggleCountStatus",
"title": "Toggle Count Status",
"category": "Markdown Preview"
},
{
"command": "markdown.toggleMacCodeBlock",
"title": "Toggle Mac Code Block",
"category": "Markdown Preview"
},
{
"command": "markdown.toggleCiteStatus",
"title": "Toggle Cite Status",
"category": "Markdown Preview"
}
],
"menus": {
"editor/title": [
{
"command": "markdown.preview",
"group": "navigation",
"when": "editorLangId == markdown"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"compile": "webpack",
"watch": "webpack --watch",
"build": "webpack --mode production --devtool hidden-source-map",
"package": "vsce package --no-dependencies --allow-package-secrets github"
},
"dependencies": {
"@md/core": "workspace:*",
"@md/shared": "workspace:*",
"@types/webpack": "^5.28.5",
"isomorphic-dompurify": "^2.34.0",
"postcss": "^8.5.6",
"ts-loader": "^9.5.4",
"tsconfig-paths-webpack-plugin": "^4.2.0"
},
"devDependencies": {
"@types/vscode": "^1.107.0",
"@vscode/vsce": "^3.7.1",
"webpack-cli": "^6.0.1"
}
}