-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
35 lines (35 loc) · 897 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
34
35
{
"name": "self-driving-car-javascript",
"version": "1.0.0",
"description": "Run a self-driving car using JavaScript and TensorFlow.js",
"main": "drive.js",
"scripts": {
"start": "node drive.js",
"training": "node train.js"
},
"keywords": [
"self-driving car",
"tensorflow",
"CNN"
],
"author": "Alex Bakoushin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bakoushin/self-driving-car-javascript.git"
},
"bugs": {
"url": "https://github.com/bakoushin/self-driving-car-javascript/issues"
},
"homepage": "https://github.com/bakoushin/self-driving-car-javascript#readme",
"dependencies": {
"@tensorflow/tfjs-node": "2.4.0",
"csv-parser": "2.3.3",
"file-lines-count": "1.0.1",
"minimist": "1.2.5",
"socket.io": "2.3.0"
},
"engines": {
"node": ">= 12.0.0"
}
}