-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 917 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
{
"name": "kaboom-extra",
"version": "0.1.1",
"description": "A package with Kaboom components, plugins, etc",
"type": "module",
"main": "./dist/kaboom-extra.cjs",
"module": "./dist/kaboom-extra.mjs",
"types": "./dist/types.d.ts",
"exports": {
".": {
"import": "./dist/kaboom-extra.mjs",
"require": "./dist/kaboom-extra.cjs"
}
},
"files": [
"src",
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node scripts/build.js && npm run dts",
"dts": "npx dts-bundle-generator -o dist/types.d.ts src/main.ts"
},
"author": "lajbel",
"license": "MIT",
"keywords": ["kaboom", "kaboom.js", "kaboomjs", "game development", "games", "plugins"],
"dependencies": {
"@types/node": "^20.10.4",
"esbuild": "^0.19.9",
"kaboom": "^3000.1.17"
},
"devDependencies": {
"dts-bundle-generator": "^9.2.1"
}
}