forked from ModelDepot/tfjs-yolo-tiny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 970 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
36
37
38
39
40
{
"name": "@renangeorgio/tfjs-yolo-tiny",
"description": "YOLO Object detection right in the browser via Tensorflow.js",
"version": "1.1.0",
"main": "dist/index.bundle.js",
"license": "MIT",
"keywords": [
"tfjs",
"Tensorflow",
"Tensorflow.js",
"YOLO",
"object detection",
"machine learning",
"deep learning"
],
"author": "Renan Georgio <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/RenanGeorgio/tfjs-yolo-tiny"
},
"peerDependencies": {
"@tensorflow/tfjs": "^4.7.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.5.0",
"babel-preset-env": "^1.6.1",
"jest": "^22.4.3",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14"
},
"scripts": {
"build": "webpack",
"test": "jest",
"watch": "webpack --watch"
}
}