-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 950 Bytes
/
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
{
"name": "celeste-dialog-highlighter",
"displayName": "Celeste Dialog Highlighter",
"description": "An extension that provides simple syntax highlighting for Celeste Dialog documents.",
"version": "0.0.2",
"publisher": "catapillie",
"engines": {
"vscode": "^1.72.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "celeste-dialog",
"aliases": ["Celeste Dialog Document", "celeste-dialog"],
"extensions": [".txt"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "celeste-dialog",
"scopeName": "source.celeste-dialog",
"path": "./syntaxes/celeste-dialog.tmLanguage.json"
}]
},
"repository": {
"type": "git",
"url": "https://github.com/catapillie/celeste-dialog-highlighter.git"
}
}