-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 2.95 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "helloworld",
"displayName": "HelloWorld",
"publisher": "xiaodabao",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:markdown",
"workspaceContains:**/*.md",
"onCommand:extension.insertTable",
"onCommand:extension.insertExcelTable",
"onCommand:extension.insertLink",
"onCommand:extension.insertFile",
"onCommand:extension.insertOnlineImage",
"onCommand:extension.insertLocalImage",
"onCommand:extension.setColor",
"onCommand:extension.markdownToRawHtml",
"onCommand:extension.markdownToZip"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "extension.insertTable",
"title": "insert table",
"category": "Markdown"
},
{
"command": "extension.insertExcelTable",
"title": "insert excel table",
"category": "Markdown"
},
{
"command": "extension.insertLink",
"title": "insert link",
"category": "Markdown"
},
{
"command": "extension.insertFile",
"title": "insert file",
"category": "Markdown"
},
{
"command": "extension.insertOnlineImage",
"title": "insert online image",
"category": "Markdown"
},
{
"command": "extension.insertLocalImage",
"title": "insert local image",
"category": "Markdown"
},
{
"command": "extension.setColor",
"title": "set color",
"category": "Markdown"
},
{
"command": "extension.markdownToRawHtml",
"title": "create raw HTML",
"category": "Markdown"
},
{
"command": "extension.markdownToZip",
"title": "create raw HTML and zip",
"category": "Markdown"
}
],
"menus": {
"editor/context": [
{
"command": "extension.insertTable"
},
{
"command": "extension.insertExcelTable"
},
{
"command": "extension.insertLink"
},
{
"command": "extension.insertFile"
},
{
"command": "extension.insertOnlineImage"
},
{
"command": "extension.insertLocalImage"
},
{
"command": "extension.setColor"
},
{
"command": "extension.markdownToRawHtml"
},
{
"command": "extension.markdownToZip"
}
]
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
"postinstall": "node ./node_modules/vscode/bin/install",
"test-compile": "tsc -p ./",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/jszip": "^3.1.6",
"@types/markdown-it": "0.0.8",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"ts-loader": "^6.0.4",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode": "^1.1.28",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"clipboardy": "^2.1.0",
"jszip": "^3.2.2",
"markdown-it": "^9.0.1",
"markdown-it-attrs": "^3.0.0",
"markdown-it-bracketed-spans": "^1.0.1"
}
}