-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "partysync",
"version": "2.0.1",
"description": "",
"keywords": [
"durable-objects",
"local-first",
"sync"
],
"homepage": "https://github.com/cloudflare/partykit/tree/main/packages/partysync",
"license": "ISC",
"author": "Sunil Pai <spai@cloudflare.com>",
"repository": {
"type": "git",
"url": "git://github.com/cloudflare/partykit.git"
},
"files": [
"dist",
"README.md"
],
"type": "module",
"exports": {
"./agent": {
"types": "./dist/agent/index.d.ts",
"require": "./dist/agent/index.js",
"import": "./dist/agent/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"require": "./dist/client/index.js",
"import": "./dist/client/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"require": "./dist/server/index.js",
"import": "./dist/server/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"require": "./dist/react/index.js",
"import": "./dist/react/index.js"
}
},
"scripts": {
"build": "tsx scripts/build.ts"
},
"dependencies": {
"idb": "^8.0.3",
"nanoid": "^5.1.6"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260303.0",
"partyfn": "^0.1.0",
"partyserver": "^0.3.1",
"partysocket": "^1.1.16"
},
"peerDependencies": {
"@cloudflare/workers-types": "^4.20240729.0",
"partyfn": ">=0.1.0",
"partyserver": ">=0.2.0 <1.0.0",
"partysocket": ">=1.0.0"
}
}