-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 831 Bytes
/
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
{
"name": "three-volumetric-pass",
"version": "0.1.0",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:demo": "vite build --config vite.config.demo.js",
"preview": "vite preview"
},
"devDependencies": {
"@types/three": "^0.159.0",
"lil-gui": "^0.19.1",
"three": "^0.159.0",
"typescript": "^5.3.3",
"vite": "^5.0.9",
"vite-plugin-dts": "^3.6.4",
"vite-plugin-glsl": "^1.2.1",
"postprocessing": "^6.33.4"
},
"peerDependencies": {
"three": ">=0.151 <=0.159",
"postprocessing": "^6.33.4"
}
}