-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.02 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.02 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
{
"name": "object-detection",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"postinstall": "mkdir -p darknet-configs darknet-configs/cfg darknet-configs/data; wget -nc https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/coco.data -O darknet-configs/cfg/coco.data; wget -nc https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/yolov3.cfg -O darknet-configs/cfg/yolov3.cfg; wget -nc https://raw.githubusercontent.com/pjreddie/darknet/master/data/coco.names -O darknet-configs/data/coco.names; wget -nc https://pjreddie.com/media/files/yolov3.weights -O darknet-configs/yolov3.weights; true",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"node",
"nodejs",
"object",
"detection",
"yolo"
],
"author": "Ricardo Maltez & Rúben Caceiro",
"license": "ISC",
"dependencies": {
"@vapi/node-yolo": "^1.0.5",
"axios": "^0.18.0",
"chokidar": "^2.0.3",
"socket.io-client": "^2.1.0"
}
}