-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.73 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
{
"name": "@splinetool/react-spline",
"version": "4.0.0",
"packageManager": "[email protected]",
"files": [
"dist"
],
"type": "module",
"react-native": "./dist/react-spline.js",
"types": "./dist/Spline.d.ts",
"exports": {
".": {
"types": "./dist/Spline.d.ts",
"import": "./dist/react-spline.js"
},
"./next": {
"types": "./dist/next/SplineNext.d.ts",
"import": "./dist/react-spline-next.js"
}
},
"scripts": {
"start": "vite",
"dev": "vite",
"serve": "vite preview",
"build": "rimraf dist/ && vite build && yarn build-types",
"build-types": "tsc --skipLibCheck --isolatedModules false --noEmit false --emitDeclarationOnly --declaration --outDir dist/",
"publish": "yarn build && np --no-tests"
},
"peerDependencies": {
"@splinetool/runtime": "*",
"next": ">=14.2.0",
"react": "*",
"react-dom": "*"
},
"peerDependenciesMeta": {
"next": {
"optional": true
}
},
"dependencies": {
"blurhash": "2.0.5",
"lodash.debounce": "4.0.8",
"react-merge-refs": "2.1.1",
"thumbhash": "0.1.1"
},
"devDependencies": {
"@splinetool/runtime": "^1.3.10",
"@types/animejs": "^3.1.12",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20.14.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"animejs": "^3.2.2",
"modern-normalize": "^1.1.0",
"next": "15.0.0-rc.0",
"np": "^10.0.5",
"react": "19.0.0-rc-f994737d14-20240522",
"react-dom": "19.0.0-rc-f994737d14-20240522",
"rimraf": "^5.0.7",
"rollup-plugin-rename-node-modules": "^1.3.1",
"rollup-preserve-directives": "^1.1.1",
"typescript": "^5.4.5",
"vite": "^5.2.12"
}
}