|
11 | 11 | "3d" |
12 | 12 | ], |
13 | 13 | "license": "MIT", |
14 | | - "type": "module", |
15 | | - "main": "./dist/index.cjs", |
16 | | - "module": "./dist/index.js", |
17 | | - "exports": { |
18 | | - "types": "./dist/index.d.ts", |
19 | | - "require": "./dist/index.cjs", |
20 | | - "import": "./dist/index.js" |
21 | | - }, |
22 | | - "types": "./dist/index.d.ts", |
23 | | - "sideEffects": false, |
24 | 14 | "files": [ |
25 | | - "dist" |
| 15 | + "dist/*", |
| 16 | + "src/*" |
26 | 17 | ], |
| 18 | + "type": "module", |
| 19 | + "main": "./dist/index.js", |
| 20 | + "exports": "./dist/index.js", |
| 21 | + "sideEffects": false, |
27 | 22 | "repository": { |
28 | 23 | "type": "git", |
29 | 24 | "url": "git+https://github.com/pmndrs/react-postprocessing.git" |
30 | 25 | }, |
31 | | - "lint-staged": { |
32 | | - "*.{js,jsx,ts,tsx}": [ |
33 | | - "eslint --fix" |
34 | | - ] |
35 | | - }, |
36 | 26 | "scripts": { |
37 | | - "prebuild": "rimraf dist", |
38 | | - "build": "vite build && tsc --emitDeclarationOnly", |
39 | | - "prepare": "yarn build", |
| 27 | + "build": "vite build", |
40 | 28 | "eslint": "eslint . --fix --ext=js,ts,jsx,tsx", |
41 | 29 | "eslint:ci": "eslint . --ext=js,ts,jsx,tsx", |
42 | 30 | "test": "vitest run", |
43 | | - "typecheck": "tsc --noEmit false --strict --jsx react", |
| 31 | + "typecheck": "tsc", |
44 | 32 | "release": "semantic-release" |
45 | 33 | }, |
46 | 34 | "dependencies": { |
47 | | - "buffer": "^6.0.3", |
48 | 35 | "maath": "^0.6.0", |
49 | | - "n8ao": "^1.6.6", |
50 | | - "postprocessing": "^6.32.1", |
| 36 | + "n8ao": "^1.9.4", |
| 37 | + "postprocessing": "^6.36.6", |
51 | 38 | "three-stdlib": "^2.35.7" |
52 | 39 | }, |
53 | 40 | "devDependencies": { |
54 | | - "@react-three/drei": "^9.68.2", |
55 | 41 | "@react-three/fiber": "9.0.0-rc.4", |
56 | 42 | "@types/node": "^22.10.7", |
57 | 43 | "@types/react": "^19.0.2", |
|
66 | 52 | "eslint-plugin-prettier": "^4.2.1", |
67 | 53 | "eslint-plugin-react": "^7.32.2", |
68 | 54 | "eslint-plugin-react-hooks": "^4.6.0", |
69 | | - "husky": "^8.0.3", |
70 | | - "lint-staged": "^13.2.2", |
71 | 55 | "prettier": "^2.8.8", |
72 | 56 | "react": "^19.0.0", |
73 | 57 | "react-dom": "^19.0.0", |
74 | | - "rimraf": "^5.0.0", |
75 | 58 | "semantic-release": "^21.0.2", |
76 | 59 | "three": "^0.156.0", |
77 | 60 | "typescript": "^5.0.4", |
|
80 | 63 | }, |
81 | 64 | "peerDependencies": { |
82 | 65 | "@react-three/fiber": "9.0.0-rc.4", |
83 | | - "react": ">=19.0", |
| 66 | + "react": "^19.0", |
84 | 67 | "three": ">= 0.156.0" |
85 | 68 | } |
86 | 69 | } |
0 commit comments