forked from replit/kaboom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 897 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
{
"name": "kaboom",
"description": "kaboom.js is a JavaScript library that helps you make games fast and fun!",
"version": "0.8.0-beta.8",
"license": "MIT",
"homepage": "https://kaboomjs.com/",
"repository": "github:replit/kaboom",
"browser": "./dist/kaboom.js",
"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/",
"CHANGELOG.md"
],
"scripts": {
"dev": "node scripts/dev.js",
"site": "cd site; node .",
"build": "node scripts/build.js",
"cpenv": "rm -rf env/kaboom && cp -R src env/kaboom",
"doc": "node scripts/doc.js",
"check": "tsc --noEmit",
"prepack": "npm run build"
},
"devDependencies": {
"esbuild": "^0.12.19",
"typescript": "^4.3.5",
"ws": "^8.1.0"
}
}