This repository was archived by the owner on Sep 28, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.87 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.87 KB
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
{
"description": "The language server for minecraft",
"license": "BSD-3-Clause",
"name": "blockception-minecraft-server",
"private": true,
"publisher": "BlockceptionLtd",
"version": "8.0.45",
"author": {
"name": "Blockception Ltd",
"url": "https://www.blockception.com/"
},
"engines": {
"node": "*"
},
"repository": {
"url": "https://github.com/Blockception/VSCode-Bedrock-Development-Extension",
"type": "git"
},
"scripts": {
"compile": "tsc -b ./tsconfig.json",
"test": "jest",
"update": "npm update && npm audit fix",
"postversion": "npm run save_version && git add . && git commit -m \"auto: version update\"",
"save_version": "echo export const Version = \"%npm_package_version%\" > ./src/lib/constants/version.ts"
},
"dependencies": {
"@blockception/shared": "^0.0.1",
"@daanv2/queue-processor": "^2.2.1",
"@types/vscode": "^1.103.0",
"bc-minecraft-bedrock-command": "^1.21.100-3",
"bc-minecraft-bedrock-diagnoser": "^1.21.100-13",
"bc-minecraft-bedrock-project": "^1.21.101",
"bc-minecraft-bedrock-types": "^1.22.1-16",
"bc-minecraft-bedrock-vanilla-data": "^1.21.80-11",
"bc-minecraft-molang": "^1.21.100-12",
"bc-minecraft-project": "^1.21.73-8",
"bc-vscode-words": "^1.3.16",
"comment-json": "^4.2.5",
"fast-glob": "^3.3.3",
"fastest-levenshtein": "^1.0.16",
"jsonc-parser": "^3.3.1",
"node": "^24.1.0",
"picomatch": "^4.0.3",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12",
"vscode-uri": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.15.30",
"@types/picomatch": "^4.0.2",
"json-loader": "^0.5.7",
"ts-jest": "^29.3.4",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
}
}