-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 963 Bytes
/
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
{
"name": "topas",
"displayName": "Topas",
"publisher": "SamuelPeet",
"author": {
"name": "Samuel Peet"
},
"description": "Syntax highlighting and VSCode integration for Topas monte carlo parameter files",
"version": "1.0.0",
"engines": {
"vscode": "^1.30.0"
},
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/samuelpeet/topas-vscode.git"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "topas",
"aliases": ["Topas", "topas"],
"extensions": [".txt"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "topas",
"scopeName": "text.topas",
"path": "./syntaxes/topas.tmLanguage.json"
}]
},
"homepage": "https://github.com/samuelpeet/topas-vscode/blob/master/README.md"
}