-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.63 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@nodots/backgammon-ai",
"version": "1.0.6",
"description": "AI and integration for nodots-backgammon using the @nodots/gnubg-hints native addon.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"backgammon",
"ai",
"gnubg",
"hints",
"analysis",
"boardgame",
"typescript"
],
"author": "Ken Riley <kenr@nodots.com>",
"license": "GPL-3.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodots/backgammon-ai.git"
},
"homepage": "https://github.com/nodots/backgammon-ai",
"bugs": {
"url": "https://github.com/nodots/backgammon-ai/issues"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"build": "tsc -b --force",
"train": "node dist/ai/src/training/train.js --data training",
"train:latest": "node scripts/train-latest.js",
"train:linear": "node dist/ai/src/training/train-linear.js --data training",
"eval": "node scripts/eval-latest.js",
"ai:full": "node scripts/pipeline.js",
"benchmarks": "node scripts/run-benchmarks.js",
"freeze:benchmark": "node scripts/freeze-benchmark.js",
"eval:latest": "node scripts/eval-latest.js",
"promote": "node scripts/promote-latest.js",
"clean": "rm -rf dist coverage",
"prebuild": "npm run clean",
"prepare": "npm run build",
"release": "npm run build && npm publish",
"publish:dry-run": "npm run build && npm publish --dry-run",
"install:latest-types": "rm -rf node_modules package-lock.json && npm install",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@nodots/backgammon-api-utils": "^1.0.0",
"@nodots/backgammon-engine-protocol": "github:nodots/backgammon-engine-protocol#development",
"@nodots/backgammon-core": "^1.0.0",
"@nodots/backgammon-types": "^1.0.0",
"@nodots/gnubg-hints": "^1.0.0",
"@types/socket.io-client": "^1.4.36",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.18.3",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.19.0",
"jest": "^29.7.0",
"minimatch": "^3.1.5",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18"
}
}