forked from Xeeynamo/vscode-rsdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (60 loc) · 1.13 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
{
"name": "rsdk-script",
"displayName": "RSDK Script",
"description": "RSDK script syntax highlighting",
"version": "0.4.1",
"publisher": "xeeynamo",
"repository": "https://github.com/xeeynamo/vscode-rsdk",
"license": "Apache-2.0",
"icon": "icon.png",
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Programming Languages", "Snippets"
],
"keywords": [
"RSDK",
"Retro Engine",
"Retro SDK",
"Retro Software Development Kit",
"script",
"sonic",
"disassembly",
"Christian Whitehead"
],
"contributes": {
"languages": [
{
"id": "rsdk",
"aliases": [
"RSDK",
"rsdk"
],
"extensions": [
".txt",
".srsdk"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "rsdk",
"scopeName": "source.rsdk",
"path": "./syntaxes/rsdk.tmLanguage.json"
}
],
"snippets": [
{
"language": "rsdk",
"path": "./rsdk-snippets.json"
}
]
},
"__metadata": {
"id": "f7a98b07-3e37-45f4-9f8d-9cc4e5e0f38b",
"publisherDisplayName": "Luciano (Xeeynamo) Ciccariello",
"publisherId": "9bdae957-ffdd-4149-990a-c2b6ead84894"
}
}