Establish package structure and initial technology plan

This commit is contained in:
Glen Whitney 2019-11-23 15:54:44 -05:00
parent 3192855776
commit c83019656e
5 changed files with 64 additions and 5 deletions

24
package.json Normal file
View file

@ -0,0 +1,24 @@
{
"name": "dyna3",
"version": "0.1.0",
"description": "Constraint-based three-dimensional dynamic geometry",
"private": "true",
"main": "dyna3.js",
"scripts": {
"test": "qunit"
},
"repository": {
"type": "git",
"url": "https://code.studioinfinity.org/glen/dyna3.git"
},
"keywords": [
"webgl",
"geometry"
],
"author": "Glen Whitney",
"license": "GPL-3.0-or-later",
"dependencies": {
"three": "latest"
},
"//": "See doc/tech.md for an overview of the technical structure of dyna3"
}