-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
27 lines (27 loc) · 887 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
{
"name": "google-sheets-equation-syntax-hightlighter",
"displayName": "Google Sheets Equation Syntax Hightlighter",
"description": "A VSC extension to support Syntax highlighting for Google Sheets Equations",
"publisher": "leonidasIIV",
"version": "0.1.0",
"repository": "https://github.com/leonidasIIV/vsc_sheets_formula_extension",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "sheets",
"aliases": ["Google Sheets Equations", "sheets"],
"extensions": [".gse"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "sheets",
"scopeName": "source.sheets",
"path": "./syntaxes/sheets.tmLanguage.json"
}]
}
}