-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
211 lines (211 loc) · 5.94 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
{
"name": "vscode-defold-ide",
"displayName": "Defold Buddy",
"description": "Productivity tools for Defold to make your life easier and coding experience nicer",
"publisher": "mikatuo",
"license": "MIT",
"version": "1.5.3",
"repository": {
"type": "git",
"url": "https://github.com/mikatuo/vscode-defold-buddy"
},
"homepage": "https://marketplace.visualstudio.com/items?itemName=mikatuo.vscode-defold-ide",
"bugs": {
"url": "https://github.com/mikatuo/vscode-defold-buddy/issues"
},
"sponsor": {
"url": "https://www.buymeacoffee.com/mikatuo"
},
"icon": "images/logo.png",
"galleryBanner": {
"color": "#1e2226",
"theme": "dark"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"keywords": [
"Defold",
"game engine",
"IDE",
"Lua"
],
"activationEvents": [
"workspaceContains:game.project",
"workspaceContains:app/game.project",
"workspaceContains:main/main.collection",
"workspaceContains:input/game.input_binding"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vscode-defold-ide.initialize",
"title": "Initialize",
"category": "Defold Buddy"
},
{
"command": "vscode-defold-ide.generateManifest",
"title": "Generate manifest (reduce game bundle size)",
"shortTitle": "Generate manifest",
"category": "Defold Buddy"
},
{
"command": "vscode-defold-ide.generateHashesModule",
"title": "Generate module with hashes (alpha)",
"category": "Defold Buddy"
},
{
"command": "vscode-defold-ide.indexDefoldFiles",
"title": "Index game files for autocompletion",
"category": "Defold Buddy"
},
{
"command": "vscode-defold-ide.createGameObject",
"title": "Create Game Object",
"category": "Defold Buddy"
},
{
"command": "vscode-defold-ide.createGui",
"title": "Create Gui",
"category": "Defold Buddy"
},
{
"command": "vscode-defold-ide.createLuaModule",
"title": "Create Lua Module",
"category": "Defold Buddy"
},
{
"command": "vscode-defold-ide.projectBuild",
"title": "[Editor] Project > Build",
"category": "Defold Buddy"
},
{
"command": "vscode-defold-ide.projectFetchLibraries",
"title": "[Editor] Project > Fetch Libraries",
"category": "Defold Buddy"
},
{
"command": "vscode-defold-ide.debugStartOrAttach",
"title": "[Editor] Debug > Start / Attach",
"category": "Defold Buddy"
},
{
"command": "vscode-defold-ide.openAssetStore",
"title": "Asset Portal",
"category": "Defold Buddy"
},
{
"command": "vscode-defold-ide.hotReload",
"title": "Hot reload",
"category": "Defold Buddy",
"enablement": "false"
},
{
"command": "vscode-defold-ide.unzipDependencies",
"title": "Unzip dependencies",
"category": "Defold Buddy",
"enablement": "false"
},
{
"command": "vscode-defold-ide.addDependency",
"title": "Add dependency",
"category": "Defold Buddy",
"enablement": "false"
}
],
"menus": {
"commandPalette": [
{
"command": "vscode-defold-ide.createGameObject",
"when": "false"
},
{
"command": "vscode-defold-ide.createGui",
"when": "false"
}
],
"explorer/context": [
{
"command": "vscode-defold-ide.createGameObject",
"group": "2_workspace",
"when": "explorerResourceIsFolder"
},
{
"command": "vscode-defold-ide.createGui",
"group": "2_workspace",
"when": "explorerResourceIsFolder"
},
{
"command": "vscode-defold-ide.createLuaModule",
"group": "2_workspace",
"when": "explorerResourceIsFolder"
}
]
},
"languages": [
{
"id": "defold-buddy-console-output",
"mimetypes": [
"text/x-code-output"
]
}
],
"grammars": [
{
"language": "defold-buddy-console-output",
"scopeName": "defold-buddy-console.output",
"path": "./syntaxes/defold-console.tmLanguage"
}
]
},
"scripts": {
"install:all": "npm install && cd webview-ui && npm install",
"start:webview": "cd webview-ui && npm run dev",
"build:webview": "cd webview-ui && npm run build",
"esbuild-base": "rimraf out && esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"package": "vsce package",
"publish": "vsce publish",
"publish-pre-release": "vsce publish --pre-release",
"vscode:prepublish": "npm run esbuild-base -- --minify && npm run build:webview",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.74.0",
"@types/ws": "^8.5.6",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vscode/test-electron": "^2.2.0",
"@vscode/vsce": "^2.21.1",
"esbuild": "^0.17.4",
"eslint": "^8.28.0",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"rimraf": "^5.0.5",
"typescript": "^4.9.3"
},
"dependencies": {
"adm-zip": "^0.5.10",
"axios": "^1.2.3",
"node-ssdp": "^4.0.1",
"protobufjs": "^7.2.0",
"rxjs": "^7.8.1",
"ws": "^8.14.2"
},
"extensionDependencies": [
"sumneko.lua",
"pdesaulniers.vscode-teal"
]
}