Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/hlsl/package.json
3292 views
1
{
2
"name": "hlsl",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "*"
10
},
11
"scripts": {
12
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin tgjones/shaders-tmLanguage grammars/hlsl.json ./syntaxes/hlsl.tmLanguage.json"
13
},
14
"categories": ["Programming Languages"],
15
"contributes": {
16
"languages": [
17
{
18
"id": "hlsl",
19
"extensions": [
20
".hlsl",
21
".hlsli",
22
".fx",
23
".fxh",
24
".vsh",
25
".psh",
26
".cginc",
27
".compute"
28
],
29
"aliases": [
30
"HLSL",
31
"hlsl"
32
],
33
"configuration": "./language-configuration.json"
34
}
35
],
36
"grammars": [
37
{
38
"language": "hlsl",
39
"path": "./syntaxes/hlsl.tmLanguage.json",
40
"scopeName": "source.hlsl"
41
}
42
]
43
},
44
"repository": {
45
"type": "git",
46
"url": "https://github.com/microsoft/vscode.git"
47
}
48
}
49
50