-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.14 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "yolo-tfjs-vision",
"version": "1.0.6",
"description": "A TypeScript-based YOLO object detection library using TensorFlow.js",
"main": "dist/yolo.umd.js",
"module": "dist/yolo.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && rollup -c",
"prepublishOnly": "npm run build"
},
"keywords": [
"YOLO",
"TensorFlow.js",
"object-detection",
"TypeScript"
],
"author": {
"name": "Josue Gutierrez",
"email": "josue.ggh@gmail.com"
},
"license": "MIT",
"peerDependencies": {
"@tensorflow/tfjs": "4.22.0",
"@tensorflow/tfjs-backend-webgl": "4.22.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-typescript": "12.1.2",
"rollup": "2.79.2",
"rollup-plugin-terser": "7.0.2",
"tslib": "^2.8.1",
"typescript": "5.7.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/josueggh/yolo-ts.git"
},
"bugs": {
"url": "https://github.com/josueggh/yolo-ts/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/josueggh/yolo-ts#readme"
}