-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
39 lines (39 loc) · 927 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
{
"name": "space-3d",
"version": "1.0.0",
"description": "Quickly generate procedural 3D space scenes in your browser with WebGL",
"main": "",
"dependencies": {
"brfs": "^1.4.1",
"filesaver.js": "^1.3.4",
"gl-matrix": "^2.3.1",
"jszip": "^3.2.2",
"query-string": "^3.0.0",
"rng": "^0.2.2"
},
"devDependencies": {
"browserify": "^16.5.0",
"budo": "^11.6.3"
},
"scripts": {
"start": "budo src/main.js:static/js/bundle.js --live -- -t brfs",
"build": "browserify src/main.js -o static/js/bundle.js -t brfs"
},
"repository": {
"type": "git",
"url": "https://github.com/wwwtyro/space-3d.git"
},
"keywords": [
"WebGL",
"space",
"gamedev",
"3D",
"nebula"
],
"author": "Rye Terrell",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/wwwtyro/space-3d/issues"
},
"homepage": "https://github.com/wwwtyro/space-3d"
}