-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
86 lines (86 loc) · 2.27 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
{
"name": "markdown-markmap",
"displayName": "Markdown Preview Markmap Support",
"description": "Visualize Markdown as Mindmap (A.K.A Markmap) to VS Code's built-in markdown preview",
"icon": "images/icon.png",
"publisher": "phoihos",
"repository": {
"type": "git",
"url": "https://github.com/phoihos/vscode-markdown-markmap"
},
"bugs": {
"url": "https://github.com/phoihos/vscode-markdown-markmap/issues"
},
"homepage": "https://github.com/phoihos/vscode-markdown-markmap#readme",
"license": "MIT",
"version": "1.4.6",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Other"
],
"keywords": [
"markdown mindmap",
"markmap",
"mindmap",
"markdown-it",
"markdown-it-plugin"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"markdown.markdownItPlugins": true,
"markdown.previewScripts": [
"./out/renderer/markmap.bundle.js"
],
"markdown.previewStyles": [
"./out/renderer/markmap.css"
],
"grammars": [
{
"scopeName": "markdown.codeblock.markmap",
"path": "./syntaxes/markmap.tmLanguage.json",
"injectTo": [
"text.html.markdown"
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run bundle:deps & npm run compile",
"bundle:deps": "webpack --mode production",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/markdown-it": "^12.2.3",
"@types/mocha": "^10.0.1",
"@types/node": "^16.18.16",
"@types/vscode": "^1.63.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"css-loader": "^6.7.3",
"eslint": "^8.36.0",
"glob": "^8.1.0",
"markdown-it": "^13.0.1",
"markmap-view": "^0.2.7",
"mini-css-extract-plugin": "^2.7.3",
"mocha": "^10.2.0",
"sass": "^1.59.3",
"sass-loader": "^13.2.0",
"typescript": "^4.9.5",
"vscode-test": "^1.6.1",
"webfontloader": "^1.6.28",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"js-base64": "^3.7.5",
"markmap-lib": "^0.12.0"
}
}