-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 886 Bytes
/
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
{
"name": "markdown-ruby",
"displayName": "Markdown Ruby",
"description": "Adds ruby syntax support to VS Code's built-in markdown preview",
"version": "1.0.1",
"publisher": "fuji-nakahara",
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./extension",
"contributes": {
"markdown.markdownItPlugins": true
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fuji-nakahara/vscode-markdown-ruby"
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/node": "^12.0.10",
"eslint": "^5.16.0",
"typescript": "^3.5.2",
"vscode": "^1.1.34"
},
"dependencies": {
"markdown-it-ruby": "^0.1.1"
}
}