-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.63 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.63 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
71
72
73
{
"name": "spoint",
"version": "0.1.463",
"description": "Physics and netcode SDK for multiplayer game servers",
"type": "module",
"main": "src/index.js",
"bin": {
"spoint": "./server.js",
"spoint-create-app": "./bin/create-app.js"
},
"scripts": {
"start": "node server.js",
"create-app": "node ./bin/create-app.js",
"bots": "node src/sdk/BotHarness.js"
},
"files": [
"src/",
"apps/",
"client/",
"!client/test-*.html",
"!client/vrm-test.html",
"bin/",
"server.js",
"SKILL.md",
"LICENSE",
"README.md"
],
"keywords": [
"gamedev",
"multiplayer",
"physics",
"netcode",
"websocket",
"jolt-physics",
"game-server"
],
"repository": {
"type": "git",
"url": "https://github.com/AnEntrypoint/spoint.git"
},
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@gltf-transform/extensions": "^4.3.0",
"@pixiv/three-vrm": "^3.5.1",
"alea": "^1.0.1",
"d3-octree": "^1.1.0",
"draco3d": "^1.5.7",
"draco3dgltf": "^1.5.7",
"jolt-physics": "^0.29.0",
"meshoptimizer": "^1.0.1",
"msgpackr": "^1.11.8",
"sharp": "^0.34.5",
"simplex-noise": "^4.0.3",
"webjsx": "^0.0.73",
"ws": "^8.18.0",
"xstate": "^5.28.0"
},
"optionalDependencies": {
"@fails-components/webtransport": "^1.5.3",
"@fails-components/webtransport-transport-http3-quiche": "^1.5.3"
},
"devDependencies": {
"@gltf-transform/cli": "^4.3.0",
"@gltf-transform/core": "^4.3.0",
"flatspace": "^1.0.13",
"monaco-editor": "^0.44.0",
"playwright": "^1.58.1",
"three": "^0.183.1"
}
}