-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
{
"name": "osu-wiki-markdown-preview",
"displayName": "osu! wiki markdown preview",
"description": "Simulates the osu! website in the markdown preview window",
"version": "0.3.2",
"publisher": "cl8n",
"license": "MIT-0",
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Themes",
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"markdown.markdownItPlugins": true,
"markdown.previewScripts": [
"./share/vscode-remove-default-styles.js"
],
"markdown.previewStyles": [
"./share/vscode-slim.css",
"./share/fonts.css",
"./node_modules/bootstrap/dist/css/bootstrap.min.css",
"./share/osu-web-base.css",
"./share/osu-web.css",
"./share/override.css"
]
},
"qna": false,
"icon": "./icon.png",
"galleryBanner": {
"color": "#221F2E",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/cl8n/vscode-osu-wiki-markdown-preview.git"
},
"scripts": {
"build": "rm -rf out && tsc --project ./",
"vscode:prepublish": "npm run build",
"watch": "tsc --watch --project ./"
},
"dependencies": {
"bootstrap": "3.4.1",
"markdown-it-container": "^4.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-front-matter": "^0.2.4",
"yaml": "^2.5.0"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/markdown-it-container": "^2.0.10",
"@types/markdown-it-footnote": "^3.0.4",
"@types/node": "^20.14.12",
"@types/vscode": "^1.87.0",
"typescript": "^5.5.4"
}
}