forked from replit/kaboom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.23 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "kaboom",
"description": "kaboom.js is a JavaScript library that helps you make games fast and fun!",
"version": "2001.0.0-alpha.21",
"license": "MIT",
"homepage": "https://kaboomjs.com/",
"repository": "github:replit/kaboom",
"author": "tga <[email protected]>",
"type": "module",
"main": "./dist/kaboom.cjs",
"module": "./dist/kaboom.mjs",
"types": "./dist/kaboom.d.ts",
"typesVersions": {
"*": {
"global": [ "./dist/global.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_ENV=development node scripts/build.js",
"site": "cd site && npm run build && npm run start",
"devsite": "cd site && npm run dev",
"build": "node scripts/build.js",
"check": "tsc",
"lint": "eslint src demo",
"fmt": "eslint --fix src demo",
"test": "node scripts/test.js",
"prepare": "npm run build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.29.0",
"esbuild": "^0.14.47",
"eslint": "^8.18.0",
"express": "^4.18.1",
"puppeteer": "^14.4.1",
"typescript": "^4.7.4"
}
}