-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 928 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 928 Bytes
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
{
"name": "dither-flow",
"version": "0.1.0",
"description": "A 1-bit dithered flow field for the web. Cursor-stirred ink, curl-noise advection, Bayer ordered dithering — raw WebGL2, zero dependencies.",
"type": "module",
"main": "dist/dither-flow.js",
"types": "dist/dither-flow.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc && cp dist/dither-flow.js docs/dither-flow.js"
},
"keywords": [
"webgl",
"webgl2",
"dither",
"dithering",
"bayer",
"ordered-dithering",
"flow-field",
"curl-noise",
"fluid",
"creative-coding",
"shader",
"1-bit"
],
"author": "Caleb Lemos (https://caleblemos.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/caleblemos/dither-flow.git"
},
"homepage": "https://caleblemos.github.io/dither-flow/",
"devDependencies": {
"typescript": "^7.0.2"
}
}