-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.65 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
{
"name": "react-tweakpane",
"version": "0.8.0",
"main": "dist/index.js",
"module": "dist/index.cjs",
"types": "dist/index.d.ts",
"author": "MelonCode",
"type": "module",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"size": "size-limit",
"analyze": "size-limit --why",
"build:demo": "vite build -c vite.demo.ts",
"deploy:demo": "gh-pages -d gh-pages",
"preview:demo": "vite preview -c vite.demo.ts"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tweakpane": "^3.1.9"
},
"devDependencies": {
"@react-three/drei": "^9.70.0",
"@react-three/fiber": "^8.13.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@size-limit/preset-small-lib": "^8.2.4",
"@tweakpane/core": "^1.1.8",
"@types/node": "^20.2.5",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/three": "^0.152.1",
"@vitejs/plugin-react": "^4.0.0",
"gh-pages": "^5.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.23.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"size-limit": "^8.2.4",
"three": "^0.152.2",
"tslib": "^2.5.0",
"tweakpane": "^3.1.9",
"typescript": "^5.0.4",
"vite": "^4.3.7",
"vite-plugin-dts": "^2.3.0",
"vite-tsconfig-paths": "^4.2.0"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
}
}