-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
56 lines (56 loc) · 1.79 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
{
"name": "@partyserver/partyserver-root",
"version": "0.0.0",
"private": true,
"description": "Everything's better with friends",
"scripts": {
"build": "npm run build -w partyserver -w y-partyserver -w partysub -w partyfn -w partysync",
"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 partysub",
"check:type": "bun scripts/typecheck.ts",
"ncu": "bunx npm-check-updates",
"all": "bun i && npm run build && npm run check",
"postinstall": "sh -c '[ -f package-lock.json ] && echo \"Error: package-lock.json exists\" && exit 1 || exit 0'"
},
"author": "Sunil Pai <[email protected]>",
"license": "ISC",
"workspaces": [
"packages/*",
"examples/*",
"fixtures/*"
],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@cloudflare/vitest-pool-workers": "^0.5.40",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@manypkg/cli": "^0.23.0",
"@types/bun": "^1.1.14",
"@vitest/runner": "2.1.8",
"@vitest/snapshot": "2.1.8",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "2.1.8",
"wrangler": "^3.99.0"
},
"overrides": {
"esbuild": "0.24.2",
"@types/node": "20.8.3",
"prosemirror-model": "1.22.2"
},
"trustedDependencies": [
"@biomejs/biome",
"core-js",
"esbuild",
"workerd"
],
"packageManager": "[email protected]",
"type": "module"
}