-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 1.67 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
{
"name": "vscode-bedrock-definitions",
"displayName": "Bedrock Definitions",
"description": "Go-to definitions and auto-complete for Minecraft Bedrock Edition",
"icon": "icon.png",
"version": "2.0.8",
"engines": {
"vscode": "^1.37.0"
},
"author": {
"name": "destruc7i0n",
"email": "[email protected]"
},
"contributors": [
{
"name": "CyberPon3",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/destruc7i0n/vscode-bedrock-definitions"
},
"license": "GPL3",
"publisher": "destruc7i0n",
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"Minecraft",
"Bedrock"
],
"activationEvents": [
"onLanguage:json",
"onLanguage:jsonc",
"workspaceContains:**/*.mcfunction",
"onCommand:bedrock-definitions.refreshCache"
],
"markdown": "github",
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "bedrock-definitions.refreshCache",
"title": "Bedrock Definitions: Refresh Cache"
}
]
},
"scripts": {
"package": "vsce package",
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.6",
"@types/vscode": "^1.37.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"tslint": "^6.1.3",
"typescript": "^4.7.4",
"vscode-test": "^1.6.1"
},
"dependencies": {
"async-mutex": "^0.3.2",
"jsonc-parser": "^3.0.0"
}
}