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
|
{
"name": "@serpentity/lib",
"version": "2.0.0",
"description": "Shared components for Serpentity",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/serpentity/lib.git"
},
"keywords": [
"ecs",
"serpentity",
"games",
"entity",
"component",
"system"
],
"author": "Rubén Beltrán del Río",
"license": "Apache-2.0",
"bugs": {
"url": "https://gitlab.com/serpentity/lib/issues"
},
"homepage": "https://gitlab.com/serpentity/lib#readme",
"devDependencies": {
"lerna": "^7.1.1"
},
"dependencies": {
"@serpentity/components.acceleration": "file:components/acceleration",
"@serpentity/components.angle": "file:components/angle",
"@serpentity/components.debug": "file:components/debug",
"@serpentity/components.force": "file:components/force",
"@serpentity/components.position": "file:components/position",
"@serpentity/components.velocity": "file:components/velocity",
"@serpentity/components.weight": "file:components/weight"
}
}
|