forked from kaplayjs/kaplay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.44 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
{
"name": "kaplay",
"description": "KAPLAY is a JavaScript library that helps you make games fast and fun!",
"version": "3001.0.0-alpha.13",
"license": "MIT",
"homepage": "https://kaplayjs.com/",
"repository": "github:marklovers/kaplay",
"type": "module",
"main": "./dist/kaboom.cjs",
"module": "./dist/kaboom.mjs",
"types": "./dist/declaration/types.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/declaration/types.d.ts",
"default": "./dist/kaboom.mjs"
},
"require": {
"types": "./dist/declaration/types.d.ts",
"default": "./dist/kaboom.cjs"
}
},
"./global": "./dist/declaration/global.js"
},
"typesVersions": {
"*": {
"global": [
"./dist/declaration/global.d.ts"
]
}
},
"keywords": [
"game",
"gamedev",
"fun",
"mark"
],
"files": [
"dist/",
"src/",
"kaboom.png",
"CHANGELOG.md"
],
"scripts": {
"dev": "NODE_ENV=development node scripts/dev.js",
"win:dev": "set NODE_ENV=development && node scripts/dev.js",
"build": "node scripts/build.js",
"check": "tsc",
"fmt": "dprint fmt",
"test": "node scripts/test.js",
"desktop": "tauri dev",
"prepare": "npm run build"
},
"devDependencies": {
"dprint": "^0.45.1",
"esbuild": "^0.21.5",
"esbuild-dts-path-alias": "^4.2.1",
"express": "^4.18.3",
"puppeteer": "^22.4.1",
"typescript": "^5.4.2"
}
}