-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 915 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
{
"name": "tdb-highlighter",
"displayName": "TDB Highlighter",
"publisher": "AMKrajewski",
"description": "Provides syntax highlighting for the Thermodynamic DataBase (TDB) files used in the CALPHAD community to describe thermodynamic models of properties of materials.",
"version": "1.3.3",
"license": "MIT",
"icon": "assets/Logo.png",
"pricing": "Free",
"repository": {
"type": "git",
"url": "https://github.com/amkrajewski/tdb-highlighter"
},
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "tdb",
"aliases": ["ThermodynamicDataBase", "TDB"],
"extensions": [".tdb",".TDB"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "tdb",
"scopeName": "source.tdb",
"path": "./syntaxes/tdb.tmLanguage.json"
}]
}
}