colyseus 0.17.3 → 0.17.4
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/index.cjs +2 -0
- package/build/index.cjs.map +1 -1
- package/package.json +13 -14
package/build/index.cjs
CHANGED
|
@@ -17,6 +17,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
17
17
|
};
|
|
18
18
|
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
19
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// bundles/colyseus/src/index.ts
|
|
20
22
|
var index_exports = {};
|
|
21
23
|
__export(index_exports, {
|
|
22
24
|
RedisDriver: () => import_redis_driver.RedisDriver,
|
package/build/index.cjs.map
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/index.ts"],
|
|
4
4
|
"sourcesContent": ["export * from \"@colyseus/core\";\n\n//\n// 0.14.x compatibility:\n// each \"presence\", \"transport\", and \"driver\" implementation have been extracted from the core.\n//\nimport { Server } from '@colyseus/core';\nimport { WebSocketTransport } from '@colyseus/ws-transport';\nServer.prototype['getDefaultTransport'] = function(options: any) {\n return new WebSocketTransport(options);\n}\nexport { RedisPresence } from '@colyseus/redis-presence';\nexport { RedisDriver } from '@colyseus/redis-driver';\n"],
|
|
5
|
-
"mappings": "
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,0BAAc,2BAAd;AAMA,kBAAuB;AACvB,0BAAmC;AAInC,4BAA8B;AAC9B,0BAA4B;AAJ5B,mBAAO,UAAU,qBAAqB,IAAI,SAAS,SAAc;AAC7D,SAAO,IAAI,uCAAmB,OAAO;AACzC;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "colyseus",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.4",
|
|
4
4
|
"description": "Multiplayer Framework for Node.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"input": "./src/index.ts",
|
|
@@ -36,32 +36,31 @@
|
|
|
36
36
|
"engines": {
|
|
37
37
|
"node": ">= 20.x"
|
|
38
38
|
},
|
|
39
|
-
"dependencies": {},
|
|
40
39
|
"devDependencies": {
|
|
41
40
|
"@colyseus/msgpackr": "*",
|
|
42
41
|
"@colyseus/schema": "^4.0.1",
|
|
43
42
|
"@types/ws": "^8.5.14",
|
|
44
|
-
"zod": "^4.1.12",
|
|
45
43
|
"ws": "^8.18.0",
|
|
44
|
+
"zod": "^4.1.12",
|
|
45
|
+
"@colyseus/auth": "^0.17.5",
|
|
46
46
|
"@colyseus/better-call": "^1.0.26",
|
|
47
|
-
"@colyseus/
|
|
48
|
-
"@colyseus/
|
|
49
|
-
"@colyseus/
|
|
50
|
-
"@colyseus/
|
|
51
|
-
"@colyseus/
|
|
52
|
-
"@colyseus/
|
|
53
|
-
"@colyseus/
|
|
54
|
-
"@colyseus/
|
|
55
|
-
"@colyseus/drizzle-driver": "^0.17.4"
|
|
47
|
+
"@colyseus/redis-presence": "^0.17.5",
|
|
48
|
+
"@colyseus/core": "^0.17.5",
|
|
49
|
+
"@colyseus/redis-driver": "^0.17.5",
|
|
50
|
+
"@colyseus/sdk": "^0.17.5",
|
|
51
|
+
"@colyseus/tools": "^0.17.6",
|
|
52
|
+
"@colyseus/uwebsockets-transport": "^0.17.6",
|
|
53
|
+
"@colyseus/ws-transport": "^0.17.6",
|
|
54
|
+
"@colyseus/drizzle-driver": "^0.17.5"
|
|
56
55
|
},
|
|
57
56
|
"peerDependencies": {
|
|
58
57
|
"@colyseus/auth": "0.17.x",
|
|
59
58
|
"@colyseus/core": "0.17.x",
|
|
60
59
|
"@colyseus/redis-driver": "0.17.x",
|
|
61
60
|
"@colyseus/redis-presence": "0.17.x",
|
|
62
|
-
"@colyseus/
|
|
61
|
+
"@colyseus/schema": "^4.0.1",
|
|
63
62
|
"@colyseus/uwebsockets-transport": "0.17.x",
|
|
64
|
-
"@colyseus/
|
|
63
|
+
"@colyseus/ws-transport": "0.17.x"
|
|
65
64
|
},
|
|
66
65
|
"gitHead": "25ba61e283429bb4fa02db0454f804ea218259eb",
|
|
67
66
|
"scripts": {
|