-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) 路 1.86 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) 路 1.86 KB
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
66
67
68
69
70
71
72
73
{
"name": "@react-three/postprocessing",
"version": "3.0.5",
"description": "postprocessing wrapper for React and @react-three/fiber",
"keywords": [
"postprocessing",
"react",
"three",
"@react-three/fiber",
"webgl",
"3d"
],
"license": "MIT",
"files": [
"dist",
"src"
],
"type": "module",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/pmndrs/react-postprocessing.git"
},
"bugs": {
"url": "https://github.com/pmndrs/react-postprocessing/issues"
},
"homepage": "https://github.com/pmndrs/react-postprocessing#readme",
"scripts": {
"build": "vite build && tsc",
"eslint": "eslint . --fix",
"eslint:ci": "eslint .",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"maath": "^0.10.8",
"n8ao": "^2.0.0"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^9.39.5",
"@react-three/fiber": "^9.7.0",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/three": "^0.182.0",
"@typescript-eslint/eslint-plugin": "^8.64.0",
"@typescript-eslint/parser": "^8.64.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.7.0",
"postprocessing": "^6.39.3",
"prettier": "^3.9.5",
"react": "^19.2.7",
"three": "^0.182.0",
"typescript": "^6.0.0",
"vite": "^8.1.4",
"vitest": "^4.1.10"
},
"peerDependencies": {
"@react-three/fiber": ">=9.7.0",
"postprocessing": "^6.36.0",
"react": "^19.2.0",
"three": ">= 0.182.0"
}
}