-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 872 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
{
"name": "markdown-preview-fuji-styles",
"displayName": "Markdown Preview Fuji Styles",
"description": "Changes VS Code's built-in markdown preview to Fuji style, which matches Japanese novels",
"version": "0.1.3",
"publisher": "fuji-nakahara",
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Other"
],
"contributes": {
"markdown.previewStyles": [
"./fuji-markdown.css"
]
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fuji-nakahara/vscode-markdown-preview-fuji-styles"
},
"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"
}
}