forked from mscroggs/MENACE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 860 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 860 Bytes
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
{
"name": "menace",
"version": "1.0.0",
"description": "**Machine Educable Noughts And Crosses Engine** — a browser-based tic-tac-toe demo where an AI learns by reinforcement, inspired by Donald Michie’s 1960 matchbox computer.",
"main": "index.js",
"scripts": {
"test": "vitest",
"serve": "live-server --port=8080 --host=127.0.0.1 --open=/",
"serve:npx": "npx --yes live-server@1.2.2 --port=8080 --host=127.0.0.1 --open=/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ap0ught/MENACE.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/ap0ught/MENACE/issues"
},
"homepage": "https://github.com/ap0ught/MENACE#readme",
"devDependencies": {
"jsdom": "^29.0.1",
"live-server": "^1.2.2",
"vitest": "^4.1.2"
}
}