-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "n64-assembly",
"displayName": "N64 Assembly Support",
"description": "An extension to have N64 Assembly support on vscode!",
"version": "1.1.5",
"publisher": "is06",
"icon": "images/logo.png",
"homepage": "https://github.com/is06/n64-assembly",
"repository": {
"type": "git",
"url": "https://github.com/is06/n64-assembly"
},
"bugs": {
"url": "https://github.com/is06/n64-assembly/issues"
},
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Programming Languages",
"Themes"
],
"contributes": {
"languages": [
{
"id": "n64asm",
"aliases": [
"N64 MIPS Assembly"
],
"extensions": [
".asm",
".inc",
".n64asm"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "n64asm",
"scopeName": "source.n64asm",
"path": "./syntaxes/n64asm.tmLanguage.json"
}
],
"themes": [
{
"label": "N64AweSoMe",
"uiTheme": "vs-dark",
"path": "./themes/N64AweSoMe-theme.json"
}
]
}
}