-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.25 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
{
"name": "@concision/mobius-team-matchmaking",
"version": "0.2.0",
"description": "A competitive team-matchmaking algorithm for the melee game Mobius that utilizes genetic programming to optimize for balanced team matchup schedules.",
"author": "Concision <contact@concision.me>",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/concision/mobius-team-matchmaking.git"
},
"homepage": "https://github.com/concision/mobius-team-matchmaking#readme",
"bugs": {
"url": "https://github.com/concision/mobius-team-matchmaking/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"packageManager": "yarn@4.1.0",
"type": "commonjs",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepack": "yarn run build",
"demo": "node -r ts-node/register/transpile-only src/matchmaking/mobius/demo/MobiusMatchmakingDemo.ts",
"demo:debug": "node --inspect-brk -r ts-node/register/transpile-only src/matchmaking/mobius/demo/MobiusMatchmakingDemo.ts"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@types/node": "^20.11.19",
"ansi-colors": "^4.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}