keystonemc 3.2.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 --force && npm run build
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 -f keystonemc` を実行するとブランチの最新の状態でインストールされる
24
+ 1. `npm install keystonemc` を実行するとブランチの最新の状態でインストールされる
@@ -1,4 +1,8 @@
1
- import { AABB, Vector3 } from '@minecraft/server';
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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keystonemc",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "description": "ScriptAPI Wrapper",
5
5
  "type": "module",
6
6
  "scripts": {