-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.84 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
{
"name": "react-selfie-ai-background-remover",
"version": "1.0.3",
"description": "A React component that removes the background from images using TensorFlow.js and the MediaPipe Selfie Segmentation model.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"react",
"background-removal",
"tensorflow",
"ai",
"image-processing",
"mediapipe",
"selfie-segmentation"
],
"repository": {
"type": "git",
"url": "https://github.com/AleksPetrakov/react-selfie-ai-background-remover.git"
},
"author": "Aleksandr Petrakov <alex.g.petrakov@gmail.com> (https://www.linkedin.com/in/agpetrakov/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/AleksPetrakov/react-selfie-ai-background-remover/issues"
},
"homepage": "https://github.com/AleksPetrakov/react-selfie-ai-background-remover#readme",
"scripts": {
"dev": "vite",
"build": "rollup -c",
"lint": "eslint .",
"preview": "vite preview"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"@tensorflow-models/body-segmentation": "^1.0.2",
"@tensorflow/tfjs": "^4.21.0"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"eslint": "^9.11.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.9.0",
"rollup": "^3.29.5",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^5.5.3",
"vite": "^5.4.8"
}
}