package.json 667 B

1234567891011121314151617181920
  1. {
  2. "name": "merchantsofdeath-js13k",
  3. "version": "1.0.0",
  4. "description": "The 2022 js13k Entry by @eyeofmidas and @danusha",
  5. "scripts": {
  6. "build:watch": "webpack --watch",
  7. "build": "webpack",
  8. "bundle": "zip -r game.zip min.js main.css index.html",
  9. "size": "echo -n `stat --printf='%s/13312=' game.zip`; echo `stat --printf='%s/13312\n' game.zip`*100 | bc -l",
  10. "clean": "rm game.zip min.js",
  11. "server": "http-server -c-1 -p 3000"
  12. },
  13. "devDependencies": {
  14. "http-server": "latest",
  15. "terser": "latest",
  16. "terser-webpack-plugin": "latest",
  17. "webpack": "^5.74.0",
  18. "webpack-cli": "^4.7.2"
  19. }
  20. }