-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "3d-robot",
"version": "0.1.0",
"type": "module",
"homepage": "https://github.com/CrystallizeAPI/3d-robot",
"description": "Robot 3D model rendered by model-viewer and manipulated using code",
"repository": {
"type": "git",
"url": "git+https://github.com/CrystallizeAPI/3d-robot.git"
},
"keywords": [
"3d model",
"model viewer",
"ar",
"augmented reality"
],
"engines": {
"bun": ">=1.1.4"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "biome lint --error-on-warnings ./src",
"preview": "vite preview"
},
"dependencies": {
"@google/model-viewer": "3.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.23.0",
"three": "0.160.0"
},
"devDependencies": {
"@biomejs/biome": "1.7.1",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"typescript": "^5.4.5",
"vite": "^5.2.0"
}
}