Skip to content

Commit b475332

Browse files
committed
✨ (all) add batch module for analyzing and replaying games
1 parent 270bd24 commit b475332

9 files changed

+970
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
node_modules
2+
batch/replay/
3+
batch/dist/

batch/package.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "@gaia-project/batch",
3+
"version": "0.1",
4+
"description": "Extracts statistics from games",
5+
"type": "commonjs",
6+
"contributors": [
7+
"zeitlinger"
8+
],
9+
"repository": "[email protected]:boardgamers-mono/gaia-project.git",
10+
"scripts": {
11+
"build": "tsc -p .",
12+
"stats": "ts-node src/stats.ts",
13+
"replay": "ts-node src/replay.ts"
14+
},
15+
"dependencies": {
16+
"@gaia-project/engine": "workspace:../viewer",
17+
"csv-writer": "^1.6.0",
18+
"lodash": "^4.17.15",
19+
"mongoose": "^5.9.10"
20+
},
21+
"license": "MIT",
22+
"devDependencies": {
23+
"@types/node": "^16.4.13",
24+
"ts-node": "^10.1.0",
25+
"typescript": "^4.3.5"
26+
}
27+
}

batch/pnpm-lock.yaml

+341
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)