-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.84 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.84 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
64
65
66
67
68
69
70
{
"name": "rollback-netcode",
"version": "0.0.6",
"description": "P2P rollback netcode library for browser-based multiplayer games",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/someusername6/rollback-netcode.git"
},
"bugs": {
"url": "https://github.com/someusername6/rollback-netcode/issues"
},
"homepage": "https://someusername6.github.io/rollback-netcode",
"scripts": {
"clean": "rm -rf dist",
"build": "tsc",
"build:demo": "node esbuild.demo.mjs",
"serve:demo": "npm run build:demo && npx http-server examples/local-transport -p 3000 -c-1",
"test": "node --import tsx --test tests/*.test.ts tests/**/*.test.ts",
"lint": "biome check src/",
"format": "biome format --write src/",
"benchmark": "node --import tsx src/benchmark.ts",
"prepublishOnly": "npm run clean && npm run build && npm run lint && npm test"
},
"keywords": [
"netcode",
"rollback",
"multiplayer",
"webrtc",
"p2p",
"game",
"networking",
"ggpo"
],
"author": "someusername6",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/node": "^25.0.10",
"@types/pako": "^2.0.4",
"esbuild": "^0.27.2",
"tsx": "^4.21.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=22.0.0"
},
"peerDependencies": {
"pako": "^2.1.0"
},
"peerDependenciesMeta": {
"pako": {
"optional": true
}
},
"packageManager": "npm@11.4.1+sha512.fcee43884166b6f9c5d04535fb95650e9708b6948a1f797eddf40e9778646778a518dfa32651b1c62ff36f4ac42becf177ca46ca27d53f24b539190c8d91802b"
}