-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.64 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
{
"name": "@mesmotronic/react-three-canvas",
"author": "Neil Rackett",
"license": "BSD-2-Clause",
"description": "Makes it easy to embed vanilla Three.js into your React app",
"version": "1.3.1",
"type": "module",
"main": "dist/webgl/index.js",
"types": "dist/webgl/index.d.ts",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/mesmotronic/react-three-canvas.git"
},
"files": [
"dist"
],
"exports": {
".": "./dist/webgl/index.js",
"./webgl": "./dist/webgl/index.js",
"./webgpu": "./dist/webgpu/index.js"
},
"keywords": [
"react",
"three",
"threejs",
"mount",
"unmount",
"animate",
"embed",
"webgl",
"webgpu"
],
"bugs": {
"url": "https://github.com/mesmotronic/react-three-canvas/issues"
},
"homepage": "https://github.com/mesmotronic/react-three-canvas#readme",
"scripts": {
"dev": "vite",
"build": "tsc -b ./tsconfig.lib.json",
"lint": "eslint .",
"preview": "vite preview",
"prepublish": "npm run build"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"three": ">=0.183.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.13.4",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/three": ">=0.183.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5"
},
"publishConfig": {
"access": "public"
}
}