-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.06 KB
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
{
"name": "gsl-linter",
"displayName": "Garden Shading Language (GSL)",
"description": "Custom GLSL dialect",
"version": "1.5.1",
"publisher": "cfnptr",
"repository": { "type": "git", "url": "https://github.com/cfnptr/vscode-gsl" },
"license": "Apache 2.0",
"bugs": { "url": "https://github.com/cfnptr/vscode-gsl/issues" },
"homepage": "https://github.com/cfnptr/vscode-gsl",
"keywords": [ "gsl", "garden", "shading", "language", "glsl", "shader", "syntax", "linter", "highlighter" ],
"engines": { "vscode": "^1.75.0" },
"categories": [ "Programming Languages" ],
"icon": "logo.png",
"main": "./extension.js",
"activationEvents": [ "onLanguage:gsl" ],
"contributes": {
"languages": [
{
"id": "gsl",
"aliases": [ "GSL", "gsl" ],
"extensions": [ ".gsl", ".vert", ".frag", ".comp", ".rgen", ".rahit", ".rchit", ".rmiss", ".rint", ".rcall", ".mesh", ".task" ],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "gsl",
"scopeName": "source.gsl",
"path": "./syntaxes/gsl.tmLanguage.json"
}
]
}
}