-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.44 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.44 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
{
"name": "digital-human-platform",
"version": "1.0.0",
"description": "基于Web技术的3D数字人交互平台",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"build:mobile": "tsc && vite build --mode mobile",
"build:desktop": "tsc && vite build --mode desktop",
"build:ar": "tsc && vite build --mode ar",
"serve": "vite preview --host 0.0.0.0 --port 3000",
"deploy": "npm run build && npm run deploy:vercel",
"deploy:vercel": "vercel --prod",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:run": "vitest run"
},
"dependencies": {
"@mediapipe/face_mesh": "^0.4.1633559619",
"@mediapipe/pose": "^0.5.1675469404",
"@react-three/drei": "^9.88.13",
"@react-three/fiber": "^8.15.19",
"@types/three": "^0.158.0",
"clsx": "^2.1.1",
"lucide-react": "^0.294.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.20.1",
"sonner": "^1.2.4",
"tailwind-merge": "^3.4.0",
"three": "^0.158.0",
"zustand": "^4.4.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^4.0.10",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"fast-check": "^4.5.3",
"jsdom": "^27.2.0",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
"typescript": "^5.2.2",
"vercel": "^32.7.2",
"vite": "^5.0.8",
"vitest": "^4.0.10"
},
"keywords": [
"digital-human",
"3d-modeling",
"webgl",
"threejs",
"react",
"typescript",
"voice-interaction",
"ai-avatar",
"metaverse"
],
"author": "Digital Human Platform Team",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"last 2 versions",
"not ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}