forked from replit/kaboom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 962 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "kaboom",
"description": "kaboom.js is a JavaScript library that helps you make games fast and fun!",
"version": "2001.0.0-alpha.11",
"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"
}
}