-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
261 lines (261 loc) · 7.49 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
{
"name": "evermonkey",
"displayName": "evermonkey",
"description": "Markdown support for Evernote.",
"version": "2.4.5",
"publisher": "michalyao",
"engines": {
"vscode": "^1.10.0"
},
"categories": [
"Other",
"Languages"
],
"keywords": [
"evernote",
"markdown",
"note",
"productivity"
],
"repository": {
"type": "git",
"url": "https://github.com/michalyao/evermonkey.git"
},
"icon": "assets/icon.png",
"homepage": "http://monkey.yoryor.me",
"main": "./out/src/extension",
"activationEvents": [
"onCommand:extension.navToNote",
"onCommand:extension.publishNote",
"onCommand:extension.openDevPage",
"onCommand:extension.sync",
"onCommand:extension.newNote",
"onCommand:extension.searchNote",
"onCommand:extension.openRecentNotes"
],
"contributes": {
"commands": [
{
"command": "extension.navToNote",
"title": "Ever open: Open note in a tree-like structure."
},
{
"command": "extension.publishNote",
"title": "Ever publish: Publish current editting note to Evernote server."
},
{
"command": "extension.openDevPage",
"title": "Ever token: Open developer page to get API token."
},
{
"command": "extension.sync",
"title": "Ever sync: Synchronizing your Evernote Account."
},
{
"command": "extension.newNote",
"title": "Ever new: Create a new empty note with markdown supported and metadata inited."
},
{
"command": "extension.searchNote",
"title": "Ever search: Search note using Evernote Search Grammar."
},
{
"command": "extension.openRecentNotes",
"title": "Ever recent: Open recently edited notes."
},
{
"command": "extension.attachToNote",
"title": "Ever attach: Insert an attachment to current note."
},
{
"command": "extension.listResources",
"title": "Ever resources: List attachments of current note."
},
{
"command": "extension.openNoteInBrowser",
"title": "Ever browse: Open current note in the web browser."
},
{
"command": "extension.removeAttachment",
"title": "Ever unattach: Remove a local attachment from current note."
},
{
"command": "extension.viewInEverClient",
"title": "Ever everclient: View note in evernote client."
}
],
"keybindings": [
{
"command": "extension.navToNote",
"key": "alt+o"
},
{
"command": "extension.publishNote",
"key": "alt+p",
"when": "editorTextFocus && editorLangId == 'markdown'"
},
{
"command": "extension.newNote",
"key": "alt+n"
},
{
"command": "extension.searchNote",
"key": "alt+s"
},
{
"command": "extension.openRecentNotes",
"key": "alt+r"
},
{
"command": "extension.attachToNote",
"key": "alt+a",
"when": "editorTextFocus && editorLangId == 'markdown'"
},
{
"command": "extension.listResources",
"key": "alt+l",
"when": "editorTextFocus && editorLangId == 'markdown'"
},
{
"command": "extension.openNoteInBrowser",
"key": "alt+b",
"when": "editorTextFocus && editorLangId == 'markdown'"
},
{
"command": "extension.removeAttachment",
"key": "alt+x",
"when": "editorTextFocus && editorLangId == 'markdown'"
},
{
"command": "extension.viewInEverClient",
"key": "alt+e"
}
],
"configuration": {
"title": "EverMonkey Configuration",
"type": "object",
"properties": {
"evermonkey.token": {
"type": "string",
"default": "",
"description": "Copy your Developer Token from the website. (ever token: Open Developer Page)"
},
"evermonkey.noteStoreUrl": {
"type": "string",
"default": "",
"description": "Copy your NoteStore URL from the website. (ever token: Open Developer Page)"
},
"evermonkey.highlightTheme": {
"type": "string",
"default": "github",
"description": "Config your code highlight theme. Use highlight.js lib."
},
"evermonkey.attachmentsFolder": {
"type": "string",
"default": "../../attachments",
"description": "Local folder to save attachments"
},
"evermonkey.uploadFolder": {
"type": "string",
"default": "",
"description": "Local folder to upload attachment, as relative path."
},
"evermonkey.showTips": {
"type": "boolean",
"default": true,
"description": "Show you friendly tips."
},
"evermonkey.recentNotesCount": {
"type": "integer",
"default": 10,
"description": "Recent edited notes returned count."
},
"evermonkey.markdownTheme": {
"type": "string",
"default": "github.css",
"description": "Customize your markdown renderer theme by provide your own css. More details about customize theme: http://monkey.yoryor.me"
},
"evermonkey.fontFamily": {
"type": "array",
"default": [
"Helvetica Neue",
"Helvetica",
"Segoe UI",
"Arial",
"freesans, sans-serif",
"微软雅黑",
"Heiti SC Light",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol"
],
"description": "Evernote custom render. Will override the markdown theme."
},
"evermonkey.fontSize": {
"type": "string",
"default": "16px",
"description": "Evernote custom render. Will override the markdown theme."
},
"evermonkey.codeFontFamily": {
"type": "array",
"default": [
"Helvetica Neue",
"Helvetica",
"Segoe UI",
"Arial"
],
"description": "Code highlight font family."
},
"evermonkey.codeFontSize": {
"type": "string",
"default": "14px",
"description": "Code highlight font size."
},
"evermonkey.maxNoteCount": {
"type": "integer",
"default": 50,
"description": "The number of notes returned when you synchronized."
},
"evermonkey.noteReadonly": {
"type": "boolean",
"default": "true",
"description": "Enable readonly notes feature."
}
}
}
},
"scripts": {
"dev": "tsc -watch -p ./src/",
"build": "tsc",
"clean": "rm -rf ./build"
},
"dependencies": {
"bluebird": "^3.5.0",
"cheerio": "^0.22.0",
"crypto": "0.0.3",
"evernote": "^2.0.1-beta",
"highlight.js": "^9.11.0",
"inline-css": "^2.2.2",
"lodash": "^4.17.4",
"markdown-it": "^8.3.1",
"markdown-it-emoji": "^1.3.0",
"markdown-it-enml-todo": "^1.0.2",
"markdown-it-github-toc": "3.2.4",
"markdown-it-sub": "1.0.0",
"markdown-it-sup": "1.0.0",
"mime": "^1.3.4",
"moment": "^2.24.0",
"opener": "^1.4.3",
"to-markdown": "3.0.4"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "7.0.12",
"@types/yargs": "^15.0.9",
"eslint": "^3.6.0",
"mocha": "^3.2.0",
"typescript": "^2.0.3",
"vscode": "^1.1.0",
"yargs": "^16.1.0"
}
}