-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.57 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
{
"name": "bgio-partykit",
"version": "0.1.0",
"description": "boardgame.io on PartyKit with Socket.IO",
"type": "module",
"main": "./dist/src/index.js",
"module": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"files": [
"dist",
"src",
"partykit.json",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepack": "pnpm build",
"dev": "partykit dev --port 1999",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ tests/",
"test": "vitest run",
"test:watch": "vitest",
"e2e:local": "node scripts/e2e-local.mjs",
"e2e:lobby-client": "node scripts/e2e-lobby-client.mjs",
"e2e:print-config": "node scripts/print-config.mjs",
"deploy": "node scripts/deploy.mjs",
"e2e:deployed": "node scripts/e2e-deployed.mjs"
},
"dependencies": {
"boardgame.io": "^0.50.2",
"partykit": "^0.0.115"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/node": "^22.15.0",
"eslint": "^9.25.0",
"socket.io-client": "^4.8.3",
"typescript": "^5.8.0",
"typescript-eslint": "^8.31.0",
"vitest": "^3.1.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"workerd"
],
"patchedDependencies": {
"capnp-ts@0.7.0": "patches/capnp-ts@0.7.0.patch"
}
},
"packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48"
}