-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 814 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 814 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
{
"name": "fantom-syntax-highlighting",
"displayName": "Fantom Syntax Highlighting",
"description": "Syntax highlighting for the Fantom programming language",
"version": "0.2.1",
"publisher": "amackayfoss",
"repository": "https://github.com/a-mackay/fantom-syntax-highlighting",
"engines": {
"vscode": "^1.24.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "fantom",
"aliases": ["Fantom", "fantom"],
"extensions": [".fan"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "fantom",
"scopeName": "source.fantom",
"path": "./syntaxes/fantom.tmLanguage.json"
}]
}
}