-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
61 lines (61 loc) · 1.94 KB
/
package.json
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
{
"name": "@partyserver/partyserver-root",
"version": "0.0.0",
"private": true,
"description": "Everything's better with friends",
"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",
"check": "concurrently \"npm run check:repo\" \"npm run check:format\" \"npm run check:lint\" \"npm run check:type\" \"npm run check:test\" --kill-others-on-fail",
"check:format": "prettier . --check --ignore-unknown",
"check:lint": "biome check",
"check:repo": "manypkg check",
"check:test": "npm run check:test -w partyserver -w partysocket -w partysub -w partywhen -w partytracks",
"check:type": "tsx scripts/typecheck.ts",
"all": "tsx i && npm run build && npm run check"
},
"author": "Sunil Pai <spai@cloudflare.com>",
"license": "ISC",
"workspaces": [
"packages/*",
"examples/*",
"fixtures/*"
],
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.4",
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
"@cloudflare/vite-plugin": "^0.1.18",
"@cloudflare/vitest-pool-workers": "^0.8.7",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@manypkg/cli": "^0.23.0",
"@types/node": "22.13.14",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/runner": "3.0.9",
"@vitest/snapshot": "3.0.9",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"jsdom": "^26.0.0",
"prettier": "^3.5.3",
"shx": "^0.4.0",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vite": "^6.2.3",
"vitest": "3.0.9",
"wrangler": "^4.5.1"
},
"overrides": {
"esbuild": "0.25.0",
"@types/node": "22.13.14",
"prosemirror-model": "1.22.2"
},
"trustedDependencies": [
"@biomejs/biome",
"core-js",
"esbuild",
"workerd"
],
"packageManager": "npm@11.2.0",
"type": "module"
}