-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.64 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "vfx",
"displayName": "VFX Syntax Highlighter",
"description": "Syntax Highlighter for the VFX language (Valve Shading Language) and HLSL",
"version": "1.0.5",
"publisher": "DaddyFrosty",
"license": "MIT",
"icon": "icons/met.ico",
"engines": {
"vscode": "*"
},
"scripts": {
"update-grammar": "node %appdata%/npm/node_modules/vscode-grammar-updater/bin tgjones/shaders-tmLanguage grammars/vfx.json ./syntaxes/vfx.tmLanguage.jsonc"
},
"contributes": {
"languages": [
{
"id": "vfx",
"extensions": [
".vfx",
".shader"
],
"aliases": [
"VFX",
"vfx"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/met.ico",
"dark": "./icons/met.ico"
}
},
{
"id": "hlsl",
"extensions": [
".hlsl"
],
"aliases": [
"HLSL",
"hlsl"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/f_x_active.png",
"dark": "./icons/f_x_active.png"
}
}
],
"grammars": [
{
"language": "vfx",
"path": "./syntaxes/vfx.tmLanguage.json",
"scopeName": "source.vfx"
},
{
"language": "hlsl",
"path": "./syntaxes/hlsl.tmLanguage.json",
"scopeName": "source.hlsl"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/DaddyFrosty/vfx-syntax.git"
},
"__metadata": {
"id": "133441d1-02fb-40e3-9e93-902ddf95fa54",
"publisherDisplayName": "DaddyFrosty",
"publisherId": "d5ba6fba-90c2-44fa-ba14-cb02ff6e6d66",
"isPreReleaseVersion": false,
"targetPlatform": "undefined",
"isApplicationScoped": false,
"updated": true,
"preRelease": false
}
}