forked from TheoLvs/westworldjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 947 Bytes
/
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
{
"name": "westworld",
"version": "0.0.1",
"description": "Multi-agent simulation package",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"watch": "webpack --watch",
"start": "webpack serve --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheoLvs/westworldjs.git"
},
"keywords": [
"multi-agent",
"simulation",
"reinforcement-learning"
],
"author": "Theo Alves Da Costa",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheoLvs/westworldjs/issues"
},
"homepage": "https://github.com/TheoLvs/westworldjs#readme",
"dependencies": {
"pathfinding": "^0.4.18",
"pixi.js": "^6.1.2"
},
"devDependencies": {
"html-webpack-plugin": "^5.3.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
}
}