41 lines
953 B
JSON
41 lines
953 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|