-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.15 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.15 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
48
49
50
51
{
"name": "rtmlib-ts",
"version": "0.0.5",
"description": "High-performance browser-based AI library for real-time object detection (YOLO12) and pose estimation (RTMW) using ONNX Runtime Web",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc"
},
"files": [
"dist"
],
"keywords": [
"pose-estimation",
"rtmpose",
"dwpose",
"rtmo",
"rtmw",
"yolo",
"yolo12",
"object-detection",
"computer-vision",
"onnx",
"webassembly"
],
"author": "Based on rtmlib by Tao Jiang",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/GOH23/rtmlib-ts.git"
},
"bugs": {
"url": "https://github.com/GOH23/rtmlib-ts/issues"
},
"homepage": "https://github.com/GOH23/rtmlib-ts#readme",
"dependencies": {
"@mediapipe/tasks-vision": "^0.10.32",
"jszip": "^3.10.1",
"onnxruntime-web": "^1.24.3",
"sharp": "^0.34.0"
},
"devDependencies": {
"@types/node": "^22.19.15",
"next": "^16.1.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}