-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 853 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 853 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
{
"name": "fun-assembly-syntax",
"displayName": "Fun Assembly Syntax",
"description": "This is the syntax highlighting extension for Fun Assembly Language",
"version": "2.2.0",
"repository": {
"url": "https://github.com/skt09/Fun-Assembly-Syntax.git"
},
"publisher": "skt09",
"engines": {
"vscode": "^1.63.0"
},
"icon": "resources/icon.png",
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "fasml",
"aliases": ["fasml", "fasml"],
"extensions": [".fasml"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "fasml",
"scopeName": "source.fasml",
"path": "./syntaxes/fasml.tmLanguage.json"
}]
}
}