@react-three/postprocessing 2.3.2 → 2.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -124,4 +124,4 @@ Selection can be nested and group multiple object, higher up selection take prec
124
124
  ```
125
125
 
126
126
  - [react-postprocessing exports](https://github.com/pmndrs/react-postprocessing/blob/master/api.md)
127
- - [postprocessing docs](https://vanruesc.github.io/postprocessing/public/docs/)
127
+ - [postprocessing docs](https://pmndrs.github.io/postprocessing/public/docs/)
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-three/postprocessing",
3
- "version": "2.3.2",
3
+ "version": "2.3.3",
4
4
  "description": "postprocessing wrapper for React and @react-three/fiber",
5
5
  "keywords": [
6
6
  "postprocessing",
@@ -11,7 +11,8 @@
11
11
  "3d"
12
12
  ],
13
13
  "license": "MIT",
14
- "main": "dist/index.cjs.js",
14
+ "type": "module",
15
+ "main": "dist/index.cjs",
15
16
  "module": "dist/index.js",
16
17
  "types": "dist/index.d.ts",
17
18
  "sideEffects": false,
@@ -38,7 +39,7 @@
38
39
  "typegen": "tsc --emitDeclarationOnly || true"
39
40
  },
40
41
  "dependencies": {
41
- "postprocessing": "6.26.3",
42
+ "postprocessing": "^6.26.4",
42
43
  "react-merge-refs": "^1.1.0",
43
44
  "three-stdlib": "^2.8.11"
44
45
  },
@@ -84,12 +85,6 @@
84
85
  "peerDependencies": {
85
86
  "@react-three/fiber": ">=7.0",
86
87
  "react": ">=17.0",
87
- "react-dom": ">=17.0",
88
88
  "three": ">=0.136.0"
89
- },
90
- "peerDependenciesMeta": {
91
- "react-dom": {
92
- "optional": true
93
- }
94
89
  }
95
90
  }