-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 864 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 864 Bytes
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
{
"name": "hp41mcode",
"displayName": "HP-41 Machine Language",
"description": "Provides syntax highlighting for HP-41 M-CODE",
"version": "0.0.2",
"publisher": "jurgenkeller",
"engines": {
"vscode": "^1.44.0"
},
"categories": [
"Programming Languages"
],
"icon": "images/hp41mcode.png",
"contributes": {
"languages": [{
"id": "mcode",
"aliases": ["HP-41 M-CODE", "mcode"],
"extensions": [".src"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "mcode",
"scopeName": "source.hp41mcode",
"path": "./syntaxes/mcode.tmLanguage"
}]
},
"repository": {
"type": "git",
"url": "https://github.com/blanknut/vscode-mcode-grammar.git"
}
}