-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.03 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "glsl-analyzer",
"displayName": "glsl_analyzer",
"description": "Completion, goto-definition, inline documentation and formatter for GLSL (OpenGL Shading Language).",
"repository": {
"url": "https://github.com/nolanderc/glsl_analyzer-vscode"
},
"publisher": "nolanderc",
"author": {
"name": "Christofer Nolander",
"email": "[email protected]",
"url": "https://github.com/nolanderc"
},
"version": "1.3.0",
"icon": "icon.png",
"engines": {
"vscode": "^1.83.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:glsl"
],
"main": "./out/main.js",
"keywords": [
"language server",
"completion",
"documentation",
"glsl",
"shader"
],
"contributes": {
"languages": [
{
"id": "glsl",
"aliases": [
"OpenGL Shading Language",
"GLSL",
"glsl"
],
"extensions": [
".glsl",
".vert",
".frag",
".geom",
".tesc",
".tese",
".comp",
".mesh",
".task",
".rgen",
".rint",
".rahit",
".rchit",
".rmiss",
".rcall",
".vs",
".fs",
".gs",
".vsh",
".fsh",
".gsh",
".csh"
],
"configuration": "./language-configuration.json"
}
],
"commands": [
{
"command": "glsl-analyzer.stopClient",
"title": "GLSL: Stop glsl_analyzer"
},
{
"command": "glsl-analyzer.restartClient",
"title": "GLSL: Restart glsl_analyzer"
},
{
"command": "glsl-analyzer.download",
"title": "GLSL: Download latest glsl_analyzer"
},
{
"command": "glsl-analyzer.version",
"title": "GLSL: Get version of glsl_analyzer"
}
],
"configuration": {
"title": "glsl_analyzer",
"properties": {
"glsl-analyzer.path": {
"scope": "machine",
"type": "string",
"description": "Path to the `glsl_analyzer` executable.",
"format": "path"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./"
},
"dependencies": {
"@types/adm-zip": "^0.5.2",
"adm-zip": "^0.5.10",
"axios": "^1.5.1",
"mkdirp": "^3.0.1",
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
"@types/mocha": "^10.0.2",
"@types/node": "18.x",
"@types/vscode": "^1.83.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vscode/test-electron": "^2.3.4",
"esbuild": "^0.19.4",
"eslint": "^8.50.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"typescript": "^5.2.2"
}
}