sundrop
Version:
A 2d javascript game engine
60 lines (59 loc) • 1.55 kB
JSON
{
"name": "sundrop",
"version": "0.0.8",
"description": "A 2d javascript game engine",
"main": "./build/sundrop.js",
"directories": {
"example": "examples"
},
"type": "module",
"module": "./build/sundrop.module.js",
"exports": {
".": {
"import": "./build/sundrop.module.js",
"require": "./build/sundrop.cjs"
}
},
"scripts": {
"start": "npm run dev",
"test": "echo message from test",
"build": "rollup -c utils/build/rollup.config.js",
"build-module": "rollup -c utils/build/rollup.config.js --configOnlyModule",
"dev": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c utils/build/rollup.config.js -w -m inline\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/GappleCider/SunDrop.git"
},
"keywords": [
"game",
"game-engine",
"testing",
"2d",
"2d-graphics"
],
"author": "GappleCider",
"license": "MIT",
"bugs": {
"url": "https://github.com/GappleCider/SunDrop/issues"
},
"homepage": "https://github.com/GappleCider/SunDrop#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"rollup": "^3.18.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-visualizer": "^5.9.0",
"concurrently": "7.6.0"
},
"files": [
"build/sundrop.js",
"build/sundrop.cjs",
"build/sundrop.module.js",
"build/sundrop.min.js",
"package.json",
"LICENSE",
"CODE_OF_CONDUCT.md",
"README.md"
]
}