-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 984 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "bottlecap",
"version": "1.0.8",
"description": "A 2D GAME FRAMEWORK FOR HYPERCASUAL GAMES",
"main": "dist/index.js",
"scripts": {
"clean": "rm -fr dist",
"build": "npm run clean && npm run bundle:esm && npm run bundle:esm:min && tsc --allowJs --declaration --emitDeclarationOnly ./dist/index.js ./dist/index.min.js",
"bundle:esm": "rollup src/index.js --file dist/index.js --format esm",
"bundle:esm:min": "terser --ecma 6 --compress --mangle --module -o dist/index.min.js -- dist/index.js && gzip -9 -c dist/index.min.js > dist/index.min.js.gz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rare-earth/bottlecap.git"
},
"keywords": [
"2d",
"game",
"framework",
"game",
"engine",
"hypercasual"
],
"author": "Harsh Singh",
"license": "MIT",
"bugs": {
"url": "https://github.com/rare-earth/bottlecap/issues"
},
"homepage": "https://github.com/rare-earth/bottlecap#readme"
}