forked from replit/kaboom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.24 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
53
54
55
56
57
58
{
"name": "kaboom",
"description": "kaboom.js is a JavaScript library that helps you make games fast and fun!",
"version": "3000.0.0-beta.3",
"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"
},
"./global": "./dist/global.js"
},
"typesVersions": {
"*": {
"global": [
"./dist/global.d.ts"
]
}
},
"keywords": [
"game",
"gamedev",
"fun",
"mark"
],
"files": [
"dist/",
"src/",
"kaboom.png",
"CHANGELOG.md"
],
"scripts": {
"dev": "NODE_ENV=development node scripts/build.js",
"build": "node scripts/build.js",
"check": "tsc",
"lint": "eslint src examples",
"fmt": "eslint --fix src examples",
"test": "node scripts/test.js",
"desktop": "node scripts/desktop.js",
"prepare": "npm run build"
},
"devDependencies": {
"@neutralinojs/neu": "^9.3.1",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"esbuild": "^0.17.2",
"eslint": "^8.32.0",
"express": "^4.18.2",
"puppeteer": "^19.5.2",
"typescript": "^4.9.4"
}
}