-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
178 lines (178 loc) · 5.74 KB
/
package.json
File metadata and controls
178 lines (178 loc) · 5.74 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{
"name": "rgbds-z80",
"displayName": "RGBDS",
"description": "Language service for the RGBDS Game Boy assembler.",
"version": "5.0.0",
"publisher": "donaldhays",
"engines": {
"vscode": "^1.88.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"rgbds",
"sm83",
"z80",
"gbz80",
"game boy",
"gameboy",
"assembly"
],
"icon": "icon.png",
"main": "./out/extension",
"contributes": {
"problemMatchers": [
{
"name": "rgbdserror",
"owner": "rgbasm",
"source": "rgbasm",
"fileLocation": [
"relative",
"${workspaceFolder}"
],
"pattern": [
{
"regexp": "^(?i:(warning|error|fatal): (.*)?)$",
"severity": 1,
"message": 2
},
{
"regexp": "^\\s+at ([^:]+)(?:::.+)?\\((\\d+)\\)$",
"file": 1,
"line": 2
}
]
},
{
"name": "rgbdslinkerror",
"owner": "rgblink",
"source": "rgblink",
"pattern": [
{
"regexp": "^(?i:(warning|error|fatal): (.*)?)$",
"severity": 1,
"message": 2
},
{
"regexp": "^\\s+at ([^:]+)(?:::.+)?\\((\\d+)\\)$",
"file": 1,
"line": 2
}
]
}
],
"languages": [
{
"id": "gbz80",
"extensions": [
".asm",
".z80",
".inc",
".s",
".sm83"
],
"aliases": [
"GBZ80",
"z80"
],
"configuration": "./gbz80-configuration.json"
}
],
"snippets": [
{
"language": "gbz80",
"path": "./snippets/gbz80.json"
}
],
"grammars": [
{
"language": "gbz80",
"scopeName": "source.asm.gbz80",
"path": "./syntaxes/rgbds-asm.tmLanguage"
}
],
"configurationDefaults": {
"[gbz80]": {
"editor.wordBasedSuggestions": "off"
}
},
"configuration": [
{
"type": "object",
"title": "RGBDS Z80",
"properties": {
"rgbdsz80.showInstructionCompletionSuggestions": {
"description": "Makes IntelliSense prompts include documented instruction suggestions.",
"type": "boolean",
"default": true
},
"rgbdsz80.includeAllDocCommentNewlines": {
"description": "Makes every line of comments in a doc comment carry through a newline literal in the output Markdown.",
"type": "boolean",
"default": false
},
"rgbdsz80.includeSuggestionExtensions": {
"description": "The extensions of files (including the \".\") to include in `include` directive suggestions.",
"type": [ "array", "string" ],
"items": {
"type": "string"
},
"default": [
".asm",
".z80",
".inc",
".s",
".sm83"
]
},
"rgbdsz80.includePath": {
"description": "Specifies folder paths relative to the workspace root to search for include files.",
"type": [
"array",
"string"
],
"default": [ ]
},
"rgbdsz80.formatting.capitalization": {
"description": "How to capitalize parts of the language.",
"type": "object",
"patternProperties": {
"^.*$": {
"type": [
"string",
"null"
],
"enum": [
"upper",
"lower",
null
]
}
},
"default": { }
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"xml-js": "~1.6.11"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/vscode": "~1.88.0",
"typescript": "~4.1.5"
},
"homepage": "https://github.com/DonaldHays/rgbds-vscode",
"bugs": "https://github.com/DonaldHays/rgbds-vscode/issues",
"repository": {
"type": "git",
"url": "https://github.com/DonaldHays/rgbds-vscode.git"
}
}