-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
71 lines (71 loc) · 1.96 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
65
66
67
68
69
70
71
{
"name": "kaplay",
"description": "KAPLAY is a JavaScript & TypeScript game library that helps you make games fast and fun!",
"version": "4000.0.0-alpha.14",
"license": "MIT",
"homepage": "https://v4000.kaplayjs.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/kaplayjs/kaplay.git"
},
"type": "module",
"main": "./dist/kaplay.cjs",
"module": "./dist/kaplay.mjs",
"types": "./dist/declaration/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/declaration/index.d.ts",
"default": "./dist/kaplay.mjs"
},
"require": {
"types": "./dist/declaration/index.d.ts",
"default": "./dist/kaplay.cjs"
}
},
"./global": "./dist/declaration/global.js"
},
"typesVersions": {
"*": {
"global": [
"./dist/declaration/global.d.ts"
]
}
},
"keywords": [
"game",
"gamedev",
"fun",
"mark"
],
"files": [
"dist/",
"kaplay.webp",
"CHANGELOG.md"
],
"scripts": {
"dev": "NODE_ENV=development node scripts/dev.js",
"win:dev": "set NODE_ENV=development && node scripts/dev.js",
"build": "npm run dts && node scripts/build.js && npm run merge-dts",
"check": "tsc",
"fmt": "dprint fmt",
"test": "node scripts/test.js",
"merge-dts": "dts-bundle-generator -o dist/doc.d.ts dist/declaration/index.d.ts",
"test:vite": "vitest",
"desktop": "tauri dev",
"prepare": "npm run build",
"publish:next": "npm publish --tag next",
"dts": "tsc --p tsconfig.dts.json"
},
"devDependencies": {
"@kaplayjs/dprint-config": "^1.1.0",
"dprint": "^0.45.1",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.21.5",
"express": "^4.21.1",
"puppeteer": "^22.15.0",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"packageManager": "[email protected]+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
}