forked from splinetool/react-spline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "@splinetool/react-spline",
"version": "2.2.6",
"packageManager": "[email protected]",
"files": [
"dist"
],
"type": "module",
"types": "./dist/Spline.d.ts",
"main": "./dist/react-spline.cjs",
"module": "./dist/react-spline.js",
"react-native": "./dist/react-spline.js",
"exports": {
".": {
"types": "./dist/Spline.d.ts",
"import": "./dist/react-spline.js",
"require": "./dist/react-spline.cjs"
}
},
"scripts": {
"start": "vite",
"dev": "vite",
"serve": "vite preview",
"build": "vite build && yarn build-types",
"build-types": "tsc --skipLibCheck --isolatedModules false --noEmit false --emitDeclarationOnly --declaration --outDir dist/",
"publish": "yarn build && np"
},
"peerDependencies": {
"@splinetool/runtime": "*",
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"devDependencies": {
"@splinetool/runtime": "^0.9.232",
"@types/animejs": "^3.1.7",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "^18.14.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"animejs": "^3.2.1",
"modern-normalize": "^1.1.0",
"np": "^7.6.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.5",
"vite": "^4.1.4"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"react-merge-refs": "^2.0.1"
}
}