-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 853 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
{
"name": "multiflood",
"version": "1.0.0",
"description": "Flood-fill game for multiple players and AIs",
"main": "index.js",
"dependencies": {
"@tensorflow/tfjs": "^2.7.0",
"@types/lodash": "^4.14.165",
"http-server": "^0.12.3",
"lodash": "^4.17.20"
},
"devDependencies": {
"live-server": "^1.2.1",
"phaser": "^3.24.1",
"ts-loader": "^8.0.5",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^4.0.0"
},
"scripts": {
"build": "webpack",
"start": "webpack --watch & live-server --port=8085"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devanshk/MultiFlood.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/devanshk/MultiFlood/issues"
},
"homepage": "https://github.com/devanshk/MultiFlood#readme"
}