Mid-Simulator/node_modules/kaboom/package.json

42 lines
953 B
JSON
Raw Normal View History

2022-04-18 01:14:39 +00:00
{
"name": "kaboom",
"description": "kaboom.js is a JavaScript library that helps you make games fast and fun!",
"version": "2000.2.8",
"license": "MIT",
"homepage": "https://kaboomjs.com/",
"repository": "github:replit/kaboom",
"author": "tga <tga@space55.xyz>",
"type": "module",
"main": "./dist/kaboom.cjs",
"module": "./dist/kaboom.mjs",
"types": "./dist/kaboom.d.ts",
"exports": {
"import": "./dist/kaboom.mjs",
"require": "./dist/kaboom.cjs"
},
"keywords": [
"game",
"gamedev"
],
"files": [
"dist/",
"src/",
"kaboom.png",
"CHANGELOG.md"
],
"scripts": {
"setup": "npm install && cd site; npm install",
"dev": "node scripts/dev.js",
"site": "cd site && npm run build && npm run start",
"devsite": "cd site && npm run dev",
"build": "node scripts/build.js",
"check": "tsc --noEmit",
"test": "",
"prepare": "npm run build"
},
"devDependencies": {
"esbuild": "0.14.11",
"typescript": "4.5.4"
}
}