forked from 0beqz/realism-effects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.68 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "realism-effects",
"description": "Effects to enhance your three.js scene's realism",
"main": "dist/index.cjs",
"module": "dist/index.js",
"type": "module",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"dev": "echo no tests yet",
"prepare": "husky install"
},
"keywords": [
"three",
"threejs",
"postprocessing",
"ssgi",
"realism",
"raytracing",
"antialias",
"3d"
],
"files": [
"dist/index.js",
"dist/index.cjs"
],
"author": "0beqz",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-wasm": "^6.1.2",
"eslint": "^8.39.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-prettier": "^4.2.1",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.7.1",
"rollup": "^3.17.2",
"rollup-plugin-glslify": "^1.3.0"
},
"peerDependencies": {
"postprocessing": ">=6.30.1",
"three": ">=0.148.0"
},
"prettier": {
"semi": false,
"tabWidth": 2,
"useTabs": true,
"trailingComma": "none",
"arrowParens": "avoid",
"printWidth": 120,
"quoteProps": "consistent",
"overrides": [
{
"files": [
"*.frag",
"*.vert",
"*.glsl"
],
"options": {
"parser": "glsl-parser"
}
}
]
},
"version": "1.1.2",
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}