-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1003 Bytes
/
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": "image-shader",
"version": "0.2.6",
"description": "Run WebGL shaders on an image or canvas.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/MathiasPaumgarten/shader-image"
},
"scripts": {
"build": "tsc --p tsconfig.json",
"dev": "watchify test/index.ts -p [ tsify ] -v -o dist/test/bundle.js",
"push": "npm run build && npm publish"
},
"keywords": [
"shader",
"images",
"canvas",
"webgl"
],
"author": {
"name": "Mathias Paumgarten",
"email": "mail@mathias-paumgarten.com"
},
"license": "MIT",
"dependencies": {
"a-big-triangle": "^1.0.3",
"gl-shader": "^4.2.1",
"gl-texture2d": "^2.1.0"
},
"devDependencies": {
"@types/a-big-triangle": "^1.0.0",
"@types/gl-shader": "^4.2.0",
"@types/gl-texture2d": "^2.1.1",
"tsify": "^4.0.0",
"tslint": "^5.10.0",
"typescript": "^2.8.3",
"watchify": "^3.11.0"
}
}