-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.82 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.82 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
{
"name": "@partyserver/partyserver-root",
"version": "0.0.0",
"private": true,
"description": "Everything's better with friends",
"license": "ISC",
"author": "Sunil Pai <spai@cloudflare.com>",
"workspaces": [
"packages/*",
"fixtures/*"
],
"type": "module",
"scripts": {
"build": "npm run build -w partyserver -w partysocket -w y-partyserver -w partysub -w partyfn -w partysync -w partywhen -w partytracks -w hono-party && tsx scripts/check-exports.ts",
"check": "npm run check:repo && npm run check:format && npm run check:lint && npm run check:type && npm run check:test",
"format": "oxfmt .",
"check:format": "oxfmt --check .",
"check:lint": "oxlint",
"check:repo": "sherif",
"check:test": "npm run check:test -w partyserver -w partysocket -w partysub -w partywhen -w partytracks -w y-partyserver",
"check:type": "tsx scripts/typecheck.ts",
"all": "npm i && npm run build && npm run check"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"@cloudflare/vite-plugin": "^1.34.0",
"@cloudflare/vitest-pool-workers": "^0.15.1",
"@types/node": "25.6.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/runner": "4.1.5",
"@vitest/snapshot": "4.1.5",
"cross-env": "^10.1.0",
"jsdom": "^29.1.0",
"oxfmt": "^0.47.0",
"oxlint": "^1.62.0",
"pkg-pr-new": "^0.0.68",
"sherif": "^1.11.1",
"shx": "^0.4.0",
"tsdown": "^0.21.10",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vitest": "4.1.5",
"wrangler": "^4.86.0"
},
"overrides": {
"@types/node": "25.6.0",
"prosemirror-model": "1.22.2",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"packageManager": "npm@11.13.0",
"trustedDependencies": [
"core-js",
"esbuild",
"workerd"
]
}