-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
90 lines (90 loc) · 2.2 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
{
"name": "mermaid-markdown-syntax-highlighting",
"displayName": "Mermaid Markdown Syntax Highlighting",
"description": "Markdown syntax support for the Mermaid charting language",
"icon": "images/icon/iconPNG.png",
"version": "1.7.0",
"publisher": "bpruitt-goddard",
"license": "MIT",
"type": "module",
"engines": {
"vscode": "^1.19.0",
"node": ">=22.0.0"
},
"categories": [
"Other"
],
"contributes": {
"languages": [
{
"id": "mermaid",
"extensions": [
".mmd",
".mermaid"
],
"configuration": "./mermaid-language-configuration.json"
}
],
"grammars": [
{
"language": "mermaid",
"scopeName": "markdown.mermaid.codeblock",
"path": "./out/mermaid.tmLanguage-markdown.json"
},
{
"scopeName": "markdown.mermaid.codeblock",
"path": "./out/mermaid.tmLanguage-markdown.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.mermaid": "mermaid"
}
},
{
"scopeName": "mdx.mermaid.codeblock",
"path": "./out/mermaid.tmLanguage-mdx.json",
"injectTo": [
"source.mdx"
],
"embeddedLanguages": {
"mdx.embedded.mermaid": "mermaid"
}
},
{
"language": "mermaid",
"scopeName": "source.mermaid",
"path": "./out/mermaid.tmLanguage.json"
}
]
},
"bugs": {
"url": "https://github.com/bpruitt-goddard/vscode-mermaid-syntax-highlight/issues"
},
"homepage": "https://github.com/bpruitt-goddard/vscode-mermaid-syntax-highlight/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/bpruitt-goddard/vscode-mermaid-syntax-highlight.git"
},
"keywords": [
"mermaid"
],
"scripts": {
"convertYaml": "node build/ConvertYaml.mjs",
"format:write": "prettier --write syntaxes",
"test": "vscode-tmgrammar-test \"tests/**/*.test.{mermaid,md,mdx}\"",
"vscode:prepublish": "npm run convertYaml"
},
"devDependencies": {
"fs-extra": "^11.2.0",
"js-yaml": "^4.1.0",
"prettier": "^3.3.3",
"vscode-tmgrammar-test": "^0.1.3",
"yaml-import": "^3.0.0"
},
"__metadata": {
"id": "08792992-bb56-41fb-b5dd-8551bbee0cb6",
"publisherDisplayName": "Brian Pruitt-Goddard",
"publisherId": "79536266-6400-41d0-b043-2af5390d2788"
}
}