planet/package.json
Tyler Hallada 113de04cbe Finally a hex sphere, albeit pointy
I still need to flatten the hexagons and pentagons to make it a true dual
polyhedron of the icosahedron.

Also needs performance improvements. Like caching the vertices, switching from
fan subdivision to a different method that represents hexagons and pentagons
with less triangles.
2019-02-04 01:43:11 -05:00

25 lines
578 B
JSON

{
"name": "planet",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development --watch --progress --hot",
"build": "webpack"
},
"author": "",
"license": "ISC",
"dependencies": {
"three": "^0.101.1",
"three-orbit-controls": "^82.1.0"
},
"devDependencies": {
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}