-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (51 loc) · 1.28 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
{
"name": "gametest-types-switcher",
"publisher": "Xterionix",
"displayName": "Gametest Types Switcher",
"description": "Adds a few simple commands to switch between different different versions of @minecraft/server",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "https://github.com/Xterionix/gametest_type_switcher.git"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "gametest-types-switcher.server_beta",
"title": "Gametest: @minecraft/server 1.10.0-beta"
},
{
"command": "gametest-types-switcher.server_stable",
"title": "Gametest: @minecraft/server 1.9.0"
},
{
"command": "gametest-types-switcher.server_preview",
"title": "Gametest: @minecraft/server 1.11.0-beta"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8"
}
}