@colyseus/core 0.16.0-preview.35 → 0.16.0-preview.37
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/build/MatchMaker.d.ts +5 -8
- package/build/MatchMaker.js +40 -13
- package/build/MatchMaker.js.map +2 -2
- package/build/MatchMaker.mjs +40 -13
- package/build/MatchMaker.mjs.map +2 -2
- package/build/Protocol.d.ts +3 -3
- package/build/Protocol.js +5 -0
- package/build/Protocol.js.map +2 -2
- package/build/Protocol.mjs +5 -0
- package/build/Protocol.mjs.map +2 -2
- package/build/Room.d.ts +33 -10
- package/build/Room.js +156 -60
- package/build/Room.js.map +2 -2
- package/build/Room.mjs +158 -62
- package/build/Room.mjs.map +2 -2
- package/build/Server.d.ts +2 -0
- package/build/Server.js +10 -1
- package/build/Server.js.map +2 -2
- package/build/Server.mjs +10 -1
- package/build/Server.mjs.map +2 -2
- package/build/Stats.d.ts +2 -0
- package/build/Stats.js +37 -2
- package/build/Stats.js.map +2 -2
- package/build/Stats.mjs +25 -2
- package/build/Stats.mjs.map +2 -2
- package/build/Transport.d.ts +5 -0
- package/build/Transport.js.map +2 -2
- package/build/Transport.mjs.map +2 -2
- package/build/errors/RoomExceptions.d.ts +39 -0
- package/build/errors/RoomExceptions.js +100 -0
- package/build/errors/RoomExceptions.js.map +7 -0
- package/build/errors/RoomExceptions.mjs +71 -0
- package/build/errors/RoomExceptions.mjs.map +7 -0
- package/build/index.d.ts +2 -1
- package/build/index.js +19 -0
- package/build/index.js.map +2 -2
- package/build/index.mjs +20 -0
- package/build/index.mjs.map +2 -2
- package/build/matchmaker/controller.d.ts +2 -1
- package/build/matchmaker/controller.js.map +2 -2
- package/build/matchmaker/controller.mjs.map +2 -2
- package/build/matchmaker/driver/index.d.ts +2 -2
- package/build/matchmaker/driver/index.js +2 -2
- package/build/matchmaker/driver/index.js.map +2 -2
- package/build/matchmaker/driver/index.mjs +5 -4
- package/build/matchmaker/driver/index.mjs.map +2 -2
- package/build/matchmaker/driver/local/LocalDriver.js +2 -2
- package/build/matchmaker/driver/local/LocalDriver.js.map +2 -2
- package/build/matchmaker/driver/local/LocalDriver.mjs +2 -2
- package/build/matchmaker/driver/local/LocalDriver.mjs.map +2 -2
- package/build/serializer/SchemaSerializer.d.ts +2 -2
- package/build/serializer/SchemaSerializer.js +1 -1
- package/build/serializer/SchemaSerializer.js.map +2 -2
- package/build/serializer/SchemaSerializer.mjs +1 -1
- package/build/serializer/SchemaSerializer.mjs.map +2 -2
- package/build/utils/Utils.d.ts +4 -1
- package/build/utils/Utils.js +25 -2
- package/build/utils/Utils.js.map +2 -2
- package/build/utils/Utils.mjs +23 -1
- package/build/utils/Utils.mjs.map +2 -2
- package/package.json +11 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colyseus/core",
|
|
3
|
-
"version": "0.16.0-preview.
|
|
3
|
+
"version": "0.16.0-preview.37",
|
|
4
4
|
"description": "Multiplayer Framework for Node.js.",
|
|
5
5
|
"input": "./src/index.ts",
|
|
6
6
|
"main": "./build/index.js",
|
|
@@ -37,12 +37,17 @@
|
|
|
37
37
|
"node": ">= 18.x"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@colyseus/
|
|
41
|
-
"@colyseus/schema": "^3.0.0-alpha.37",
|
|
42
|
-
"@colyseus/timer": "^1.0.0",
|
|
43
|
-
"debug": "^4.3.4",
|
|
40
|
+
"@colyseus/timer": "^1.0.1",
|
|
44
41
|
"@colyseus/msgpackr": "^1.10.3",
|
|
45
|
-
"
|
|
42
|
+
"debug": "^4.3.4",
|
|
43
|
+
"nanoid": "^2.0.0",
|
|
44
|
+
"@colyseus/greeting-banner": "^2.0.5"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/nanoid": "^2.0.0"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"@colyseus/schema": "^3.0.0-alpha.37"
|
|
46
51
|
},
|
|
47
52
|
"publishConfig": {
|
|
48
53
|
"access": "public"
|