-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.64 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
{
"name": "r3f-canvas-record",
"private": false,
"version": "0.2.1",
"description": "React hook for recording a canvas in @react-three/fiber using canvas-record",
"keywords": [
"react-three-fiber",
"canvas-record"
],
"license": "MIT",
"homepage": "https://github.com/wtshm/r3f-canvas-record",
"bugs": {
"url": "https://github.com/wtshm/r3f-canvas-record/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/wtshm/r3f-canvas-record"
},
"author": "Kenta Watashima",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs",
"types": "./dist/index.d.ts"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"prepare": "pnpm build"
},
"dependencies": {
"@react-three/fiber": "^8.16.2",
"canvas-record": "^5.0.0"
},
"devDependencies": {
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/three": "^0.163.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"leva": "^0.9.35",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.163.0",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.9.0",
"vite-plugin-glsl": "^1.3.0"
}
}