y-partyserver 0.0.0-e50e1fc → 0.0.0-e5b2ea1

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,7 +1,10 @@
1
- ## y-partyserver
1
+ # y-partyserver
2
2
 
3
- > [!WARNING]
4
- > This project is experimental and is not yet recommended for production use.
3
+ Yjs backend for PartyServer.
4
+
5
+ ## License
6
+
7
+ ISC
5
8
 
6
9
  [//]: # "keep in sync with packages/y-partyserver/README.md"
7
10
  [//]: # "keep in sync with docs/reference/y-partyserver.md"
@@ -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,10 +1,11 @@
1
1
  {
2
2
  "name": "y-partyserver",
3
- "version": "0.0.0-e50e1fc",
3
+ "version": "0.0.0-e5b2ea1",
4
4
  "repository": {
5
5
  "type": "git",
6
- "url": "git://github.com/threepointone/partyserver.git"
6
+ "url": "git://github.com/cloudflare/partykit.git"
7
7
  },
8
+ "homepage": "https://github.com/cloudflare/partykit/tree/main/packages/y-partyserver",
8
9
  "type": "module",
9
10
  "exports": {
10
11
  ".": {
@@ -24,7 +25,7 @@
24
25
  }
25
26
  },
26
27
  "scripts": {
27
- "build": "bun scripts/build.ts"
28
+ "build": "tsx scripts/build.ts"
28
29
  },
29
30
  "files": [
30
31
  "dist",
@@ -39,21 +40,21 @@
39
40
  "license": "ISC",
40
41
  "description": "",
41
42
  "dependencies": {
42
- "lib0": "^0.2.99",
43
+ "lib0": "^0.2.101",
43
44
  "lodash.debounce": "^4.0.8",
44
- "nanoid": "^5.0.9",
45
+ "nanoid": "^5.1.5",
45
46
  "y-protocols": "^1.0.6"
46
47
  },
47
48
  "peerDependencies": {
48
49
  "@cloudflare/workers-types": "^4.20240729.0",
49
- "partyserver": "0.0.0-e50e1fc",
50
+ "partyserver": "0.0.0-e5b2ea1",
50
51
  "yjs": "^13.6.14"
51
52
  },
52
53
  "devDependencies": {
53
- "@cloudflare/workers-types": "^4.20241230.0",
54
+ "@cloudflare/workers-types": "^4.20250327.0",
54
55
  "@types/lodash.debounce": "^4.0.9",
55
- "partyserver": "0.0.0-e50e1fc",
56
- "ws": "^8.18.0",
57
- "yjs": "^13.6.21"
56
+ "partyserver": "0.0.0-e5b2ea1",
57
+ "ws": "^8.18.1",
58
+ "yjs": "^13.6.24"
58
59
  }
59
60
  }