-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "postpre",
"version": "0.1.5",
"description": "preset effects built from the post-processing library merge-pass",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc --outDir dist",
"bundle": "npx browserify dist/example.js -o bundle.js",
"buildwatch": "npx tsc -w --outDir dist",
"bundlewatch": "npx watchify dist/example.js -o bundle.js",
"prepublish": "npm run build",
"docs": "npx typedoc --out docs src",
"p5": "npx browserify dist/p5index.js -o p5bundle.js && (echo \"// @ts-nocheck\" && cat p5bundle.js) > tempfile && mv tempfile p5bundle.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bandaloo/postpre"
},
"keywords": [
"glsl",
"webgl",
"2d",
"3d",
"canvas"
],
"author": "Cole Granof",
"license": "MIT",
"devDependencies": {
"@types/dat.gui": "^0.7.5",
"browserify": "^16.5.1",
"dat.gui": "^0.7.7",
"typedoc": "^0.17.8",
"typescript": "^3.9.5",
"watchify": "^3.11.1"
},
"types": "dist/index.d.ts",
"dependencies": {
"@bandaloo/merge-pass": "^0.6.4"
}
}