-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "glsl-projectron",
"version": "0.4.0",
"description": "GPU demo to evolve vertex data matching a target image",
"author": "Andy Hall",
"license": "MIT",
"main": "src/index.js",
"files": [
"/src"
],
"scripts": {
"start": "cd demo; webpack-dev-server",
"build": "cd demo; export NODE_OPTIONS=--openssl-legacy-provider; webpack --env.production"
},
"dependencies": {
"game-shell": "github:mikolalysenko/game-shell",
"gl-buffer": "^2.1.2",
"gl-fbo": "^2.0.5",
"gl-mat4": "^1.2.0",
"gl-now": "github:stackgl/gl-now",
"gl-shader": "^4.2.1",
"gl-texture2d": "^2.1.0",
"gl-vao": "^1.3.0",
"glslify": "^7.0.0"
},
"devDependencies": {
"glslify-loader": "^2.0.0",
"raw-loader": "^3.1.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/fenomas/glsl-projectron.git"
},
"bugs": {
"url": "https://github.com/fenomas/glsl-projectron/issues"
},
"keywords": [
"GLSL",
"GPGPU",
"image",
"projection"
]
}