-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "webgl-examples",
"version": "0.1.9",
"license": "MIT",
"description": "WebGL examples using TypeScript and webgl-operate.",
"author": "CG Internals",
"homepage": "https://webgl-operate.org",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/cginternals/webgl-examples/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/cginternals/webgl-examples.git"
},
"contributors": [
{
"name": "Daniel Limberger",
"email": "[email protected]"
}
],
"devDependencies": {
"@types/gl-matrix": "~2.3.2",
"gl-matrix": "~2.3.2",
"glob": "~7.1.2",
"pug": "~2.0.0-rc.4",
"source-map-support": "~0.5.3",
"ts-loader": "~3.5.0",
"tslint": "~5.9.1",
"typescript": "~2.7.2",
"webpack": "~3.11.0",
"webpack-glsl-loader": "~1.0.1",
"webpack-sources": "~1.1.0"
},
"peerDependencies": {
"rxjs": "^5.5.6",
"webgl-operate": "^0.1.14"
},
"scripts": {
"build": "webpack",
"build-watch": "webpack --watch",
"check": "tslint --project tsconfig.json --force --format stylish --config tslint.json",
"website": "node pugconfig.js",
"website-watch": "node pugconfig.js --watch"
},
"keywords": [
"webgl",
"webgl-operate",
"rendering",
"canvas",
"engine",
"2d",
"3d",
"examples"
],
"dependencies": {
"http-server": "^0.11.1",
"webgl-operate": "^0.1.16"
}
}