-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.34 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
{
"name": "three-fiber-webxr-toolbox",
"description": "This toolset provides useful components for creating xr content with react-three-fiber.",
"version": "0.0.3",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"dev": "vite --host=0.0.0.0",
"build": "vite build && tsc",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
},
"keywords": [
"three",
"react",
"react-three-fiber",
"webxr",
"vr",
"ar",
"xr"
],
"author": "sawa-zen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sawa-zen/three-fiber-webxr-toolbox.git"
},
"bugs": {
"url": "https://github.com/sawa-zen/three-fiber-webxr-toolbox/issues"
},
"homepage": "https://github.com/sawa-zen/three-fiber-webxr-toolbox#readme",
"peerDependencies": {
"@react-three/fiber": "^8",
"@react-three/xr": "^5",
"react": "^18",
"react-dom": "^18",
"three": "^0.158.0"
},
"dependencies": {
"express": "^4.19.2",
"html2canvas": "^1.4.1",
"react-error-boundary": "^4.0.13",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5"
},
"devDependencies": {
"@react-three/drei": "^9.105.6",
"@react-three/eslint-plugin": "^0.1.1",
"@react-three/fiber": "^8.16.6",
"@react-three/xr": "^5.7.1",
"@topotal/eslint-config-react": "^0.3.5",
"@topotal/eslint-config-typescript": "^0.2.5",
"@types/node": "^20.12.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/three": "^0.164.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^3.1.0",
"prettier": "^3.2.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"three": "^0.164.1",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-node-polyfills": "^0.21.0"
}
}