-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.26 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.26 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
98
99
{
"name": "@kortexa-ai/react-multimodal",
"version": "0.2.3",
"description": "A set of react components and hooks to help with multimodal input",
"copyright": "Copyright © 2025 kortexa.ai",
"author": {
"name": "Franci Penov",
"email": "francip@kortexa.ai",
"url": "https://kortexa.ai"
},
"keywords": [
"multimodal",
"mediapipe",
"microphone",
"camera",
"hands",
"body",
"react"
],
"license": "MIT",
"private": false,
"homepage": "https://github.com/kortexa-ai/react-multimodal",
"repository": {
"type": "git",
"url": "git+https://github.com/kortexa-ai/react-multimodal.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"files": [
"dist",
"src/examples",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
"CHANGELOG.md"
],
"main": "./dist/react-multimodal.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/react-multimodal.js",
"require": "./dist/react-multimodal.js"
}
},
"scripts": {
"clean": "rm -rf .next dist dev-dist lib build coverage .firebase data server/data",
"clean:examples": "find src/examples -type d \\( -name 'dist' -o -name 'node_modules' \\) -exec rm -rf {} +",
"lint": "eslint . --report-unused-disable-directives --no-error-on-unmatched-pattern",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc -p tsconfig.app.json --noEmit",
"build": "vite build --mode production",
"build:nomin": "vite build --mode production --minify false --sourcemap inline",
"build:demo": "cd src/examples/common && npm ci && npm run build && cd ../hands && npm ci && npm run build",
"validate": "npm run typecheck && npm run lint",
"prepublishOnly": "npm run clean:examples && npm run validate && npm run build"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@mediapipe/tasks-audio": "^0.10.22-rc.20250304",
"@mediapipe/tasks-vision": "^0.10.22-rc.20250304",
"lodash": "^4.17.21",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/lodash": "^4.17.20",
"@types/node": "^24.9.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/semver": "^7.7.1",
"@vitejs/plugin-react-swc": "^4.2.0",
"eslint": "^9.38.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.4.0",
"jiti": "^2.6.1",
"jsdom": "^27.0.1",
"npm-check-updates": "^19.1.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"semver": "^7.7.3",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.6",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.2",
"vite": "^7.1.12",
"vite-plugin-dts": "^4.5.4"
},
"engines": {
"node": ">=18"
}
}