forked from rust-sailfish/sailfish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 850 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
{
"name": "vscode-sailfish",
"displayName": "vscode-sailfish",
"description": "Syntax highlighting for sailfish templates in VSCode",
"version": "0.1.0",
"author": "Ryohei Machida <[email protected]>",
"publisher": "kogia-sima",
"repository": "rust-sailfish/sailfish",
"license": "MIT",
"engines": {
"vscode": "^1.45.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [{
"id": "sailfish",
"aliases": ["sailfish"],
"extensions": [".stpl", ".html.stpl"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "sailfish",
"scopeName": "source.sailfish",
"path": "./syntaxes/sailfish.tmLanguage.json"
}]
}
}