wmc/skycraft/package.json
Paul Mathieu 282d91468e skycraft: a space stuff PoC
- kepler-based elliptical orbits
- with visualization
- and some sort of user controls
- based on wmc
2022-08-29 21:40:51 +02:00

15 lines
403 B
JSON

{
"name": "skycraft",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"esbuild": "^0.14.2"
},
"scripts": {
"watch": "esbuild --outfile=app.js index.js --bundle --sourcemap=inline --watch",
"serve": "esbuild --outfile=app.js index.js --bundle --sourcemap=inline --servedir=.",
"build": "esbuild --outfile=app.js index.js --bundle --minify"
}
}