generated from tomsouthall/react-library-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.79 KB
/
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
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
98
99
100
101
102
103
104
105
106
107
108
{
"name": "react-tfjs-models",
"version": "1.1.2",
"description": "React helpers to use with tensorflow js on videos",
"author": "Alberto Soto Fernandez",
"keywords": [
"ML",
"tensorflowjs",
"react",
"video",
"posenet",
"movenet"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/albertoSoto/react-tfjs-models-vite.git"
},
"bugs": {
"url": "https://github.com/albertoSoto/react-tfjs-models-vite/issues"
},
"files": [
"dist",
"README.md"
],
"main": "./dist/react-tfjs-models.umd.js",
"module": "./dist/react-tfjs-models.es.js",
"exports": {
".": {
"import": "./dist/react-tfjs-models.es.js",
"require": "./dist/react-tfjs-models.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest run",
"watch": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@mediapipe/pose": "^0.5.1675469404",
"@react-three/drei": "^9.80.1",
"@react-three/fiber": "^8.13.6",
"@tensorflow-models/face-landmarks-detection": "^0.0.3",
"@tensorflow-models/handpose": "^0.0.7",
"@tensorflow-models/pose-detection": "^2.1.0",
"@tensorflow/tfjs-backend-wasm": "^4.10.0",
"@tensorflow/tfjs-backend-webgl": "^4.10.0",
"@tensorflow/tfjs-backend-webgpu": "^4.10.0",
"@tensorflow/tfjs-converter": "^4.10.0",
"@tensorflow/tfjs-core": "^4.10.0",
"fingerpose": "^0.0.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.14.2",
"react-webcam": "^7.1.1",
"three": "^0.155.0",
"util": "^0.12.5",
"web-vitals": "^3.4.0"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@originjs/vite-plugin-require-context": "^1.0.9",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^14.4.3",
"@vitejs/plugin-react": "^1.0.7",
"c8": "^7.11.0",
"eslint": "^8.9.0",
"eslint-plugin-react": "^7.28.0",
"jsdom": "^19.0.0",
"react-test-renderer": "^18.2.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"vite": "^4.4.9",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-node-polyfills": "^0.11.0",
"vitest": "^0.34.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"es2020": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"parserOptions": {
"sourceType": "module"
}
}
}