forked from geckosio/snapshot-interpolation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.98 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
62
63
64
65
66
67
{
"name": "@geckos.io/snapshot-interpolation",
"version": "1.1.0",
"description": "A Snapshot Interpolation library for Real-Time Multiplayer Games",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"type": "commonjs",
"scripts": {
"test:ci": "npm i && npm run build && npm test && npm run bundle:tmp",
"start": "npm run dev",
"dev": "npm-run-all --parallel tsc:watch example:*",
"example:server": "nodemon example/server/index.js",
"example:client": "webpack serve",
"tsc:watch": "tsc --watch",
"test": "jest --collectCoverage",
"build": "rimraf lib && tsc",
"bundle": "webpack --config webpack.bundle.js",
"bundle:tmp": "webpack --config webpack.bundle.tmp.js",
"preReleaseHook": "prepublishOnly",
"prepublishOnly": "npm i && npm run build && npm run bundle",
"format": "prettier --write \"src/**/!(*.d).ts\" && prettier --write \"test/**/*.js\""
},
"keywords": [
"multiplayer",
"game",
"network",
"snapshot",
"entity",
"buffer",
"interpolation",
"client-side",
"prediction",
"server",
"reconciliation",
"lag",
"compensation"
],
"author": "Yannick Deubel (https://github.com/yandeu)",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/geckosio/snapshot-interpolation.git"
},
"bugs": {
"url": "https://github.com/geckosio/snapshot-interpolation/issues"
},
"homepage": "http://geckos.io",
"devDependencies": {
"@geckos.io/client": "^2.1.3",
"@geckos.io/server": "^2.1.3",
"@geckos.io/typed-array-buffer-schema": "^1.0.2",
"@yandeu/prettier-config": "^0.0.2",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.4.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
},
"funding": {
"url": "https://github.com/sponsors/yandeu"
}
}