y-partyserver 0.0.0-e2d2d92 → 0.0.0-e5045fd

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
@@ -1,8 +1,14 @@
1
- ## y-partyserver
1
+ # y-partyserver
2
+
3
+ Yjs backend for PartyServer.
2
4
 
3
5
  > [!WARNING]
4
6
  > This project is experimental and is not yet recommended for production use.
5
7
 
8
+ ## License
9
+
10
+ ISC
11
+
6
12
  [//]: # "keep in sync with packages/y-partyserver/README.md"
7
13
  [//]: # "keep in sync with docs/reference/y-partyserver.md"
8
14
 
@@ -1,7 +1,5 @@
1
- import * as Y from "yjs";
2
-
3
1
  import YProvider from "./index.js";
4
-
2
+ import * as Y from "yjs";
5
3
  import "lib0/decoding";
6
4
  import "lib0/encoding";
7
5
  import "lib0/observable";
@@ -1,4 +1,4 @@
1
- import { Connection, ConnectionContext, Server } from "partyserver";
1
+ import { Server, Connection, ConnectionContext } from "partyserver";
2
2
  import * as awarenessProtocol from "y-protocols/awareness";
3
3
  import { Doc } from "yjs";
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "y-partyserver",
3
- "version": "0.0.0-e2d2d92",
3
+ "version": "0.0.0-e5045fd",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git://github.com/threepointone/partyserver.git"
@@ -24,7 +24,7 @@
24
24
  }
25
25
  },
26
26
  "scripts": {
27
- "build": "bun scripts/build.ts"
27
+ "build": "tsx scripts/build.ts"
28
28
  },
29
29
  "files": [
30
30
  "dist",
@@ -41,19 +41,19 @@
41
41
  "dependencies": {
42
42
  "lib0": "^0.2.99",
43
43
  "lodash.debounce": "^4.0.8",
44
- "nanoid": "^5.0.9",
44
+ "nanoid": "^5.1.2",
45
45
  "y-protocols": "^1.0.6"
46
46
  },
47
47
  "peerDependencies": {
48
48
  "@cloudflare/workers-types": "^4.20240729.0",
49
- "partyserver": "0.0.0-e2d2d92",
49
+ "partyserver": "0.0.0-e5045fd",
50
50
  "yjs": "^13.6.14"
51
51
  },
52
52
  "devDependencies": {
53
- "@cloudflare/workers-types": "^4.20241230.0",
53
+ "@cloudflare/workers-types": "^4.20250303.0",
54
54
  "@types/lodash.debounce": "^4.0.9",
55
- "partyserver": "0.0.0-e2d2d92",
56
- "ws": "^8.18.0",
57
- "yjs": "^13.6.21"
55
+ "partyserver": "0.0.0-e5045fd",
56
+ "ws": "^8.18.1",
57
+ "yjs": "^13.6.24"
58
58
  }
59
59
  }