-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 2.71 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "react-gallery-3d",
"private": false,
"version": "2.2.1",
"type": "module",
"scripts": {
"dev": "vite",
"dev-exposed": "vite --host",
"build": "tsc && vite build",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{jsx,ts,tsx}'",
"preview": "vite preview",
"format": "prettier --write src//**/*.{ts,tsx} --config ./.prettierrc",
"prepare": "husky install",
"publish-local": "yarn link"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"yarn lint",
"yarn format"
]
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/react-gallery-3d.es.js",
"require": "./dist/react-gallery-3d.umd.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/react-gallery-3d.umd.js",
"module": "./dist/react-gallery-3d.es.js",
"types": "./dist/index.d.ts",
"dependencies": {
"three-csg-ts": "^3.1.13",
"uuid": "^9.0.1"
},
"peerDependencies": {
"@react-three/drei": ">=9.88.11",
"@react-three/fiber": ">=8.15.10",
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"three": ">=0.158.0"
},
"devDependencies": {
"@react-three/drei": "^9.88.11",
"@react-three/fiber": "^8.15.10",
"@types/node": "^20.9.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/three": "^0.158.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hooks": "^1.0.1",
"three": "^0.158.0",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.6.3",
"vite-plugin-linter": "^2.0.7",
"vite-tsconfig-paths": "^4.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/isoteriksoftware/react-gallery-3d"
},
"description": "A 3D gallery library for React applications",
"keywords": [
"react",
"react-three-fiber",
"react-three-drei",
"threejs",
"3d",
"gallery",
"react-gallery",
"react-gallery-3d",
"react-gallery-3d",
"react-3d-gallery"
],
"author": "isoteriksoftware",
"bugs": {
"url": "https://github.com/isoteriksoftware/react-gallery-3d/issues"
},
"homepage": "https://github.com/isoteriksoftware/react-gallery-3d#readme",
"license": "MIT"
}