forked from dmnsgn/glsl-smaa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 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
{
"name": "glsl-smaa",
"version": "2.0.0",
"description": "SMAA (Enhanced Subpixel Morphological Antialiasing) post-processing; WebGL (OpenGL ES 2.0) implementation with no fluff.",
"keywords": [
"glsl",
"aa",
"smaa",
"antialiasing",
"glslify",
"webgl",
"shader"
],
"homepage": "https://github.com/dmnsgn/glsl-smaa",
"bugs": "https://github.com/dmnsgn/glsl-smaa/issues",
"repository": "dmnsgn/glsl-smaa",
"funding": [
{
"type": "individual",
"url": "https://paypal.me/dmnsgn"
},
{
"type": "individual",
"url": "https://commerce.coinbase.com/checkout/56cbdf28-e323-48d8-9c98-7019e72c97f3"
}
],
"license": "MIT",
"author": "Damien Seguin (https://github.com/dmnsgn)",
"type": "module",
"main": "index.js",
"types": "types/index.d.ts",
"devDependencies": {
"async-preloader": "^5.0.2",
"bunny": "^1.0.1",
"cameras": "^3.0.1",
"core-js": "^3.9.1",
"dat.gui": "^0.7.7",
"es-module-shims": "^0.10.3",
"geom-normals": "^1.0.1",
"gl-matrix": "^3.3.0",
"parse-hdr": "^1.0.0",
"primitive-geometry": "^1.2.1",
"regl": "^2.1.0"
},
"engines": {
"node": ">=15.0.0",
"npm": ">=7.0.0"
}
}