-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
127 lines (127 loc) · 3.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "rmacro",
"displayName": "Roll20 Macros",
"description": "Syntax support for Roll20 macros",
"version": "1.1.1",
"publisher": "anduh",
"icon": "images/Roll20.png",
"repository": {
"type": "git",
"url": "https://github.com/anduh/rmacro"
},
"bugs": {
"type": "git",
"url": "https://github.com/anduh/rmacro/issues"
},
"license": "MIT",
"preview": true,
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Programming Languages",
"Language Packs",
"Snippets",
"Visualization",
"Other"
],
"keywords": [
"Roll20",
"TTRPG",
"RPG",
"dice",
"syntax highlight"
],
"contributes": {
"languages": [
{
"id": "rmacro",
"aliases": [
"Roll20 macro",
"rmacro"
],
"extensions": [
".roll",
".rmacro",
".roll20",
".r20macro"
],
"configuration": "./syntaxes/language-configuration.rmacro.json"
}
],
"grammars": [
{
"language": "rmacro",
"scopeName": "source.rmacro",
"path": "./syntaxes/rmacro.tmLanguage.json"
},
{
"scopeName": "markdown.rmacro.codeblock",
"path": "./syntaxes/markdown.rmacro.json",
"injectTo": [
"text.html.markdown",
"text.html.basic",
"text.html.javascript"
],
"embeddedLanguages": {
"meta.embedded.block.rmacro": "rmacro"
}
},
{
"scopeName": "inline.rmacro",
"injectTo": [
"source.html",
"text.html",
"source.js",
"source.js.jsx",
"source.jsx",
"source.ts",
"source.tsx",
"text.pug"
],
"path": "./syntaxes/js.rmacro.json",
"embeddedLanguages": {
"meta.embedded.block.rmacro": "rmacro"
}
}
],
"iconThemes": [
{
"id": "rmacro",
"path": "./fileicons/file-icons-icon-theme.json"
}
],
"snippets": [
{
"language": "rmacro",
"path": "./snippets/math.json"
},
{
"language": "rmacro",
"path": "./snippets/common_attr.json"
},
{
"language": "rmacro",
"path": "./snippets/examples.json"
},
{
"language": "rmacro",
"path": "./snippets/api.json"
},
{
"language": "rmacro",
"path": "./snippets/rolltemplate.json"
}
],
"configurationDefaults": {
"[rmacro]": {
"editor.bracketPairColorization.enabled": true,
"editor.wordWrap": "on"
}
}
},
"devDependencies": {
"webpack": "^5.64.2",
"webpack-cli": "^4.9.1"
}
}