keystonemc 3.1.0 → 3.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
```
|
|
11
11
|
2. NPM install
|
|
12
12
|
```bash
|
|
13
|
-
npm install
|
|
13
|
+
npm install && npm run build
|
|
14
14
|
```
|
|
15
15
|
<br />
|
|
16
16
|
|
|
@@ -21,4 +21,4 @@
|
|
|
21
21
|
1. 動作確認は以下
|
|
22
22
|
1. keystone側で package.json の dependencies を書き換え
|
|
23
23
|
1. `"keystonemc": "github:XxPMMPERxX/KeystoneCore#<ブランチ名>"`
|
|
24
|
-
1. `npm install
|
|
24
|
+
1. `npm install keystonemc` を実行するとブランチの最新の状態でインストールされる
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Vector3 } from '@minecraft/server';
|
|
2
|
+
interface AABB {
|
|
3
|
+
center: Vector3;
|
|
4
|
+
extent: Vector3;
|
|
5
|
+
}
|
|
2
6
|
export declare class AxisAlignedBB implements AABB {
|
|
3
7
|
center: Vector3;
|
|
4
8
|
extent: Vector3;
|
|
@@ -112,3 +116,4 @@ export declare class AxisAlignedBB implements AABB {
|
|
|
112
116
|
*/
|
|
113
117
|
toString(): string;
|
|
114
118
|
}
|
|
119
|
+
export {};
|
|
@@ -99,11 +99,11 @@ globalThis.__SOURCE_MAP__ = ${JSON.stringify(embeddedSourceMap)};
|
|
|
99
99
|
"dependencies": [
|
|
100
100
|
{
|
|
101
101
|
"module_name": "@minecraft/server",
|
|
102
|
-
"version": "
|
|
102
|
+
"version": "2.4.0"
|
|
103
103
|
},
|
|
104
104
|
{
|
|
105
105
|
"module_name": "@minecraft/server-ui",
|
|
106
|
-
"version": "
|
|
106
|
+
"version": "2.0.0"
|
|
107
107
|
}
|
|
108
108
|
],
|
|
109
109
|
"metadata": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "keystonemc",
|
|
3
|
-
"version": "3.1
|
|
3
|
+
"version": "3.2.1",
|
|
4
4
|
"description": "ScriptAPI Wrapper",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -24,10 +24,9 @@
|
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@eslint/js": "^9.38.0",
|
|
27
|
-
"@minecraft/server": "^2.
|
|
28
|
-
"@minecraft/
|
|
27
|
+
"@minecraft/server": "^2.4.0",
|
|
28
|
+
"@minecraft/server-ui": "^2.0.0",
|
|
29
29
|
"@minecraft/math": "^2.2.11",
|
|
30
|
-
"@minecraft/server-ui": "^2.1.0-beta.1.21.130-preview.24",
|
|
31
30
|
"@types/node": "^24.9.2",
|
|
32
31
|
"eslint": "^9.38.0",
|
|
33
32
|
"typescript": "~5.9.3",
|