-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "@splinetool/r3f-spline",
"version": "1.0.2",
"packageManager": "[email protected]",
"type": "module",
"types": "./dist/useSpline.d.ts",
"main": "./dist/useSpline.cjs.js",
"module": "./dist/useSpline.es.js",
"react-native": "./dist/useSpline.es.js",
"exports": {
".": {
"types": "./dist/useSpline.d.ts",
"import": "./dist/useSpline.es.js",
"require": "./dist/useSpline.cjs.js"
}
},
"files": [
"dist"
],
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build && yarn build-types",
"build-types": "tsc --skipLibCheck --isolatedModules false --noEmit false --emitDeclarationOnly --declaration --outDir dist/",
"preview": "vite preview",
"publish": "yarn build && np"
},
"peerDependencies": {
"@react-three/fiber": ">=7.0.0",
"@splinetool/loader": ">=0.9.19"
},
"devDependencies": {
"@react-three/drei": "^9.4.2",
"@react-three/fiber": "^8.0.11",
"@splinetool/loader": "^0.9.30",
"@types/react": "^18.0.3",
"@types/react-dom": "^18.0.0",
"@types/three": "^0.138.0",
"@vitejs/plugin-react": "^1.3.1",
"np": "^7.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"three": "0.138.3",
"typescript": "^4.6.3",
"vite": "^2.9.2"
}
}