-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
41 lines (41 loc) · 1000 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
41
{
"name": "yolov5-tfjs",
"description": "Object detection application right in your browser using YOLOv5 and Tensorflow.js",
"version": "1.0.0",
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hyuto/yolov5-tfjs.git"
},
"keywords": [
"object detection",
"yolov5",
"javascript",
"react",
"tensorflow.js"
],
"author": "Wahyu Setianto",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hyuto/yolov5-tfjs/issues"
},
"homepage": "https://github.com/Hyuto/yolov5-tfjs#readme",
"dependencies": {
"@tensorflow/tfjs": "^4.1.0",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@vitejs/plugin-react": "^2.2.0",
"gh-pages": "^5.0.0",
"vite": "^3.2.3"
}
}