-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.66 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@pose-tracker/react-native-pose-estimation",
"version": "0.2.1",
"description": "Human pose estimation SDK for React Native — fully optimized for iOS & Android (Expo Go). Bundled MoveNet Lightning, free offline keypoints, optional API-key exercise engine (reps, form score, jumps).",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"source": "src/index.ts",
"react-native": "lib/index.js",
"files": [
"lib",
"src",
"!src/backends/webview/bundledRuntimeAssets.js",
"assets",
"ios",
"PoseTrackerVision.podspec",
"react-native.config.js",
"README.md",
"LICENSE",
"THIRD_PARTY_NOTICES.md"
],
"scripts": {
"build": "node scripts/sync-sdk-version.mjs && tsc -p tsconfig.json && node scripts/copy-bundled-assets.mjs",
"typecheck": "tsc -p tsconfig.json --noEmit",
"fetch-model": "node scripts/fetch-model.mjs",
"build:runtime-payload": "node scripts/build-runtime-payload.mjs",
"deploy:runtime-payload": "node scripts/build-runtime-payload.mjs --deploy",
"prepack": "npm run build",
"pack:dry": "npm pack --dry-run"
},
"keywords": [
"human-pose-estimation",
"pose-estimation",
"react-native",
"react-native-pose-estimation",
"ios",
"android",
"expo",
"expo-go",
"movenet",
"computer-vision",
"fitness",
"exercise-tracking",
"keypoints",
"posetracker",
"offline-ai",
"webview",
"sdk"
],
"author": {
"name": "Movelytics SAS",
"email": "hello@posetracker.com",
"url": "https://www.posetracker.com"
},
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/Movelytics/react-native-pose-estimation#readme",
"bugs": {
"url": "https://github.com/Movelytics/react-native-pose-estimation/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Movelytics/react-native-pose-estimation.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"js-sha256": "^0.11.0"
},
"peerDependencies": {
"expo-file-system": ">=15.0.0",
"react": ">=18.0.0",
"react-native": ">=0.72.0",
"react-native-blob-util": ">=0.19.0",
"react-native-fs": ">=2.20.0",
"react-native-webview": ">=13.0.0"
},
"peerDependenciesMeta": {
"expo-file-system": {
"optional": true
},
"react-native-fs": {
"optional": true
},
"react-native-blob-util": {
"optional": true
}
},
"devDependencies": {
"@tensorflow/tfjs": "^4.22.0",
"@tensorflow/tfjs-backend-wasm": "^4.22.0",
"@types/react": "^18.2.0",
"assemblyscript": "^0.28.20",
"react": "^18.2.0",
"react-native": "^0.74.0",
"typescript": "^5.4.0"
}
}