colyseus 0.15.14-preview.0 → 0.15.16

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +11 -11
package/README.md CHANGED
@@ -52,8 +52,8 @@ npm start
52
52
 
53
53
  The sustainability of the project relies on **Colyseus Cloud** subscriptions and sponsorships. If you are not using Colyseus Cloud, please consider [sponsoring the project](https://github.com/sponsors/endel) 💖
54
54
 
55
- <a href="https://colyseus.io/sponsorkit/sponsors.svg">
56
- <img src="https://github.com/colyseus/colyseus.github.io/blob/master/sponsorkit/sponsors.svg?raw=1" width="100%" />
55
+ <a href="https://cdn.jsdelivr.net/gh/colyseus/.github/sponsorkit/sponsors.svg">
56
+ <img src="https://cdn.jsdelivr.net/gh/colyseus/.github/sponsorkit/sponsors.svg" width="100%" />
57
57
  </a>
58
58
 
59
59
  # Contributors ✨
package/package.json CHANGED
@@ -1,14 +1,11 @@
1
1
  {
2
2
  "name": "colyseus",
3
- "version": "0.15.14-preview.0",
3
+ "version": "0.15.16",
4
4
  "description": "Multiplayer Framework for Node.js",
5
5
  "input": "./src/index.ts",
6
6
  "main": "./build/index.js",
7
7
  "module": "./build/index.mjs",
8
8
  "typings": "./build/index.d.ts",
9
- "scripts": {
10
- "test": "TS_NODE_PROJECT=../../tsconfig/tsconfig.test.json COLYSEUS_SEAT_RESERVATION_TIME=0.3 COLYSEUS_PRESENCE_SHORT_TIMEOUT=300 c8 mocha --require tsx test/**.test.ts test/**/**.test.ts --exit --timeout 15000"
11
- },
12
9
  "author": "Endel Dreyer",
13
10
  "license": "MIT",
14
11
  "keywords": [
@@ -31,11 +28,14 @@
31
28
  "node": ">= 14.x"
32
29
  },
33
30
  "dependencies": {
34
- "@colyseus/auth": "^0.15.0",
35
- "@colyseus/core": "0.15.15-preview.0",
36
- "@colyseus/redis-driver": "^0.15.3",
37
- "@colyseus/redis-presence": "^0.15.2",
38
- "@colyseus/ws-transport": "^0.15.1"
31
+ "@colyseus/core": "^0.15.32",
32
+ "@colyseus/redis-driver": "^0.15.6",
33
+ "@colyseus/ws-transport": "^0.15.1",
34
+ "@colyseus/redis-presence": "^0.15.5",
35
+ "@colyseus/auth": "^0.15.10"
39
36
  },
40
- "gitHead": "b5b6826ff078f12ba194fff5727a3c74c8a754a4"
41
- }
37
+ "gitHead": "25ba61e283429bb4fa02db0454f804ea218259eb",
38
+ "scripts": {
39
+ "test": "TS_NODE_PROJECT=../../tsconfig/tsconfig.test.json COLYSEUS_SEAT_RESERVATION_TIME=0.3 COLYSEUS_PRESENCE_SHORT_TIMEOUT=300 c8 mocha --require tsx test/**.test.ts test/**/**.test.ts --exit --timeout 15000"
40
+ }
41
+ }