kaplay 3000.1.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "kaplay",
3
+ "description": "kaplay is a JavaScript library that helps you make games fast and fun!",
4
+ "version": "3000.1.17",
5
+ "license": "MIT",
6
+ "homepage": "https://kaplaydocs.pages.dev/",
7
+ "repository": "github:marklovers/kaplay",
8
+ "type": "module",
9
+ "main": "./dist/kaboom.cjs",
10
+ "module": "./dist/kaboom.mjs",
11
+ "types": "./dist/kaboom.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "import": {
15
+ "types": "./dist/kaboom.d.ts",
16
+ "default": "./dist/kaboom.mjs"
17
+ },
18
+ "require": {
19
+ "types": "./dist/kaboom.d.ts",
20
+ "default": "./dist/kaboom.cjs"
21
+ }
22
+ },
23
+ "./global": "./dist/global.js"
24
+ },
25
+ "typesVersions": {
26
+ "*": {
27
+ "global": [
28
+ "./dist/global.d.ts"
29
+ ]
30
+ }
31
+ },
32
+ "keywords": [
33
+ "game",
34
+ "gamedev",
35
+ "fun",
36
+ "kaboomjs"
37
+ ],
38
+ "files": [
39
+ "dist/",
40
+ "src/",
41
+ "CHANGELOG.md"
42
+ ],
43
+ "scripts": {
44
+ "dev": "NODE_ENV=development node scripts/dev.js",
45
+ "build": "node scripts/build.js",
46
+ "check": "tsc",
47
+ "lint": "eslint src examples",
48
+ "fmt": "eslint --fix src examples",
49
+ "test": "node scripts/test.js",
50
+ "desktop": "tauri dev",
51
+ "prepare": "npm run build"
52
+ },
53
+ "devDependencies": {
54
+ "@tauri-apps/cli": "^1.5.5",
55
+ "@typescript-eslint/eslint-plugin": "^6.8.0",
56
+ "esbuild": "^0.19.5",
57
+ "eslint": "^8.51.0",
58
+ "express": "^4.18.2",
59
+ "puppeteer": "^21.4.0",
60
+ "typescript": "^5.2.2"
61
+ }
62
+ }