-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 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
{
"name": "webenv-ml",
"version": "0.1.0",
"keywords": [
"machine learning",
"dataset",
"environment",
"web",
"agi"
],
"author": "Alexander Fedorov <[email protected]>",
"license": "MIT",
"description": "Extensible machine learning Web environment for training AGI.",
"repository": {
"type": "git",
"url": "https://github.com/Antipurity/webenv.git"
},
"main": "webenv.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"isomorphic-ws": "^4.0.1",
"puppeteer": "^10.1.0",
"ws": "^8.2.3"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install-datasets": "nodejs tools/install-datasets.js || node tools/install-datasets.js",
"serve-datasets": "nodejs tools/serve-datasets.js || node tools/serve-datasets.js"
}
}