1234567891011121314151617181920 |
- {
- "name": "merchantsofdeath-js13k",
- "version": "1.0.0",
- "description": "The 2022 js13k Entry by @eyeofmidas and @danusha",
- "scripts": {
- "build:watch": "webpack --watch",
- "build": "webpack",
- "bundle": "zip -r game.zip min.js main.css index.html",
- "size": "echo -n `stat --printf='%s/13312=' game.zip`; echo `stat --printf='%s/13312\n' game.zip`*100 | bc -l",
- "clean": "rm game.zip min.js",
- "server": "http-server -c-1 -p 3000"
- },
- "devDependencies": {
- "http-server": "latest",
- "terser": "latest",
- "terser-webpack-plugin": "latest",
- "webpack": "^5.74.0",
- "webpack-cli": "^4.7.2"
- }
- }
|