Skip to content

Commit

Permalink
Reviving functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
dzx-dzx committed Dec 29, 2024
1 parent 8823777 commit 607f097
Show file tree
Hide file tree
Showing 6 changed files with 2,174 additions and 79 deletions.
25 changes: 13 additions & 12 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "minecraft-js",
"request": "attach",
"name": "Wait for Minecraft Debug Connections",
"mode": "listen",
"localRoot": "${workspaceFolder}/",
"port": 19144
}
]
}
"version": "0.3.0",
"configurations": [
{
"type": "minecraft-js",
"request": "attach",
"name": "Debug with Minecraft",
"mode": "listen",
"targetModuleUuid": "0d5f498f-e169-4967-b234-d4498fca44e5",
"localRoot": "${workspaceFolder}/scripts/",
"port": 19144
}
]
}
15 changes: 6 additions & 9 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"name": "NC-GT",
"uuid": "1ac5471a-2162-4a10-8590-c6f7f60bd957",
"version": [0, 0, 1],
"min_engine_version": [ 1, 19, 0 ]
"min_engine_version": [ 1, 20, 0 ]
},
"modules": [
{
Expand All @@ -17,18 +17,15 @@
"entry": "scripts/index.js"
}
],
"capabilities": ["script_eval"],
"dependencies": [
{
"module_name": "mojang-minecraft",
"version": "1.0.0-beta"
"module_name": "@minecraft/server",
"version": "1.16.0"
},
{
"module_name": "mojang-gametest",
"version": "1.0.0-beta"
},
{
"module_name":"mojang-minecraft-ui",
"version": "1.0.0-beta"
"module_name": "@minecraft/server-ui",
"version": "1.3.0"
}
]
}
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"dependencies": {
"@types/mojang-gametest": "^0.1.6",
"@types/mojang-minecraft": "^0.1.7",
"grunt": "^1.5.3",
"@minecraft/server": "^1.16.0",
"@minecraft/server-ui": "^1.3.0",
"grunt": "^1.6.1",
"norma-core": "^0.3.1"
},
"devDependencies": {
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-webpack": "^5.0.0",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.1"
"webpack": "^5.97.1",
"webpack-cli": "^4.10.0"
},
"scripts": {
"package": "grunt package",
Expand Down
Loading

0 comments on commit 607f097

Please sign in to comment.