-
Notifications
You must be signed in to change notification settings - Fork 168
/
package.json
85 lines (85 loc) · 2.03 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "lance-gg",
"version": "5.0.2",
"description": "A Node.js based real-time multiplayer game server",
"type": "module",
"main": "dist/server/lance-gg.js",
"browser": "dist/client/lance-gg.js",
"types": "dist/types/lance-gg.d.ts",
"scripts": {
"docs": "jsdoc -c jsdoc.conf.json",
"build": "rollup --config rollup.config.js",
"test-all": "mocha test/EndToEnd/",
"test-serializer": "mocha ./test/serializer/",
"test": "mocha ./test/serializer/"
},
"keywords": [
"pixijs",
"pixi",
"socket",
"canvas",
"WebGL",
"HTML5",
"AFrame",
"physics",
"engine",
"game",
"realtime",
"multiplayer"
],
"repository": {
"type": "git",
"url": "git://github.com/lance-gg/lance.git"
},
"dependencies": {
"@types/cannon": "^0.1.12",
"@types/event-emitter": "^0.3.5",
"@types/p2": "^0.7.44",
"@types/three": "^0.163.0",
"bufferutil": "^4.0.1",
"cannon": "^0.6.2",
"event-emitter": "^0.3.5",
"jsdoc": "^4.0.2",
"mkdirp": "^0.5.1",
"p2": "^0.7.1",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"tslib": "^2.6.2",
"typescript": "next",
"utf-8-validate": "^5.0.2"
},
"files": [
"src",
"dist"
],
"author": "Opher Vishnia",
"contributors": [
{
"name": "Opher Vishnia"
},
{
"name": "Gary Weiss"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lance-gg/lance/issues"
},
"homepage": "https://github.com/lance-gg/lance#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"chai": "^3.5.0",
"eslint": "^8.28.0",
"eslint-config-google": "^0.6.0",
"express": "^4.14.0",
"lance-docs-template": "github:lance-gg/lance-docs-template#semver:^1.0.1",
"mocha": "^10.1.0",
"query-string": "^4.3.1",
"rollup": "^4.14.2",
"rollup-plugin-dts": "^6.1.0",
"should": "^11.0.0"
}
}