-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
123 lines (123 loc) Β· 2.79 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
{
"name": "vscode-glua-enhanced",
"displayName": "GLua Enhanced (Garry's Mod/Gmod Lua)",
"description": "GLua language support for Visual Studio Code",
"license": "GNU General Public License v3.0",
"version": "2.5.4",
"engines": {
"vscode": "^0.10.1"
},
"icon": "resources/logo.png",
"publisher": "venner",
"repository": {
"type": "git",
"url": "https://github.com/WilliamVenner/vscode-glua-enhanced.git"
},
"bugs": {
"url": "https://github.com/WilliamVenner/vscode-glua-enhanced/issues",
"email": "william@venner.io"
},
"homepage": "https://github.com/WilliamVenner/vscode-glua-enhanced",
"categories": [
"Programming Languages",
"Snippets"
],
"main": "./dist/extension.bundle.js",
"activationEvents": [
"onLanguage:glua"
],
"contributes": {
"snippets": [
{
"language": "glua",
"path": "./snippets/custom.json"
},
{
"language": "glua",
"path": "./snippets/keywords.json"
}
],
"languages": [
{
"id": "glua",
"aliases": [
"GLua"
],
"extensions": [
".lua"
],
"configuration": "./resources/language-configuration.json"
}
],
"grammars": [
{
"language": "glua",
"scopeName": "source.lua",
"path": "./syntaxes/lua.tmLanguage.json"
}
],
"iconThemes": [
{
"id": "glua",
"label": "GLua",
"path": "./resources/file-icons/icon-theme.json"
}
],
"colors": [
{
"id": "glua_enhanced.typeHints.color",
"description": "Text color of type hints",
"defaults": {
"dark": "#A0A0A0F0",
"light": "#747474",
"highContrast": "#BEBEBE"
}
}
],
"commands": [
{
"command": "glua-enhanced.findGlobals",
"title": "Find Globals",
"category": "GLua Enhanced"
},
{
"command": "glua-enhanced.bytecodeHeatmap",
"title": "Generate Bytecode Heatmap",
"category": "GLua Enhanced"
},
{
"command": "glua-enhanced.optimizeGlobals",
"title": "Localize Global Calls",
"category": "GLua Enhanced"
},
{
"command": "glua-enhanced.optimizeGlobalsWorkspace",
"title": "Localize Global Calls (Workspace)",
"category": "GLua Enhanced"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch"
},
"dependencies": {
"follow-redirects": "^1.13.1",
"gluaparse": "git+https://github.com/WilliamVenner/glua.js.git",
"markdown-escape": "^1.1.0",
"md5": "^2.3.0",
"pngjs": "^6.0.0",
"vtflib": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/preset-env": "^7.13.12",
"babel-loader": "^8.2.2",
"vsce": "^1.83.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}