-
Notifications
You must be signed in to change notification settings - Fork 228
/
package.json
64 lines (64 loc) · 1.33 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
59
60
61
62
63
64
{
"name": "kaboom",
"description": "kaboom.js is a JavaScript library that helps you make games fast and fun!",
"version": "3000.1.17",
"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",
"exports": {
".": {
"import": {
"types": "./dist/kaboom.d.ts",
"default": "./dist/kaboom.mjs"
},
"require": {
"types": "./dist/kaboom.d.ts",
"default": "./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/dev.js",
"build": "node scripts/build.js",
"check": "tsc",
"lint": "eslint src examples",
"fmt": "eslint --fix src examples",
"test": "node scripts/test.js",
"desktop": "tauri dev",
"prepare": "npm run build"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.11",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"express": "^4.18.3",
"puppeteer": "^22.4.1",
"typescript": "^5.4.2"
}
}