-
-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.41 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.41 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "kaplay",
"description": "KAPLAY is a JavaScript & TypeScript game library that helps you make games fast and fun!",
"version": "4000.0.0-alpha.26",
"license": "MIT",
"homepage": "https://v4000.kaplayjs.com/",
"bugs": {
"url": "https://github.com/kaplayjs/kaplay/issues"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/kaplay"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaplayjs/kaplay.git"
},
"type": "module",
"main": "./dist/kaplay.cjs",
"module": "./dist/kaplay.mjs",
"types": "./dist/doc.d.ts",
"readme": "./README.md",
"exports": {
".": {
"import": {
"types": "./dist/doc.d.ts",
"default": "./dist/kaplay.mjs"
},
"require": {
"types": "./dist/doc.d.ts",
"default": "./dist/kaplay.cjs"
}
},
"./global": "./dist/declaration/global.js"
},
"typesVersions": {
"*": {
"global": [
"./dist/declaration/global.d.ts"
]
}
},
"keywords": [
"game development",
"javascript",
"typescript",
"game engine",
"2d games",
"physics engine",
"webgl",
"canvas",
"game library",
"kaplay",
"kaboom",
"kaboomjs"
],
"files": [
"dist/",
"kaplay.webp",
"CHANGELOG.md"
],
"scripts": {
"start": "node scripts/start.ts",
"dev": "node scripts/start.ts",
"build": "pnpm generate:index && pnpm generate:dts && node scripts/build.ts",
"check": "tsc",
"lint": "eslint .",
"fmt": "dprint fmt",
"fmt:commit": "dprint fmt && git diff --quiet --cached && echo \"No changes\" || (git add . && git commit -m \"style: fmt\")",
"generate:index": "node scripts/generateIndex.js",
"generate:dts": "dts-bundle-generator -o dist/doc.d.ts src/index.ts",
"test": "node scripts/test.ts",
"test:vite": "vitest --typecheck",
"prepare": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@kaplayjs/crew": "2.0.0-beta.6",
"@kaplayjs/dprint-config": "^1.2.0",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"dprint": "^0.50.2",
"dts-bundle-generator": "^9.5.1",
"ejs": "^3.1.10",
"esbuild": "^0.25.2",
"eslint": "^9.27.0",
"eslint-plugin-jsdoc": "^50.6.17",
"express": "^5.1.0",
"puppeteer": "^22.15.0",
"tar-fs": "3.0.8",
"typescript": "5.6.3",
"typescript-eslint": "^8.32.1",
"vite": "7.1.12",
"vitest": "^4.0.2",
"vitest-environment-puppeteer": "^11.0.3",
"vitest-puppeteer": "^11.0.3"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@9.9.0+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1",
"pnpm": {
"overrides": {
"esbuild@<=0.24.2": ">=0.25.0",
"vite@>=5.0.0 <5.4.18": ">=5.4.18",
"vite@>=5.0.0 <=5.4.18": ">=5.4.19",
"vite@>=5.0.0 <5.4.17": ">=5.4.17",
"brace-expansion@>=1.0.0 <=1.1.11": ">=1.1.12",
"brace-expansion@>=2.0.0 <=2.0.1": ">=2.0.2",
"form-data@>=4.0.0 <4.0.4": ">=4.0.4",
"@eslint/plugin-kit@<0.3.4": ">=0.3.4",
"tmp@<=0.2.3": ">=0.2.4",
"tar-fs@>=3.0.0 <3.0.9": ">=3.0.9",
"vite@<=5.4.19": ">=5.4.20",
"axios@>=1.0.0 <1.12.0": ">=1.12.0",
"tar-fs@>=3.0.0 <3.1.1": ">=3.1.1"
}
}
}