-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.31 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.31 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
{
"name": "@vpmedia/phaser",
"version": "1.102.0",
"description": "@vpmedia/phaser is the modern ECMAScript port of the popular Phaser game engine v2.6.2",
"author": "Andras Csizmadia <andras@vpmedia.hu> (www.vpmedia.hu)",
"license": "MIT",
"homepage": "https://github.com/vpmedia/phaser#readme",
"bugs": {
"url": "https://github.com/vpmedia/phaser/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vpmedia/phaser.git"
},
"keywords": [
"phaser",
"game",
"engine",
"webgl",
"canvas"
],
"main": "./src/index.js",
"types": "./types/index.d.ts",
"type": "module",
"dependencies": {
"@vpmedia/simplify": "^1.74.0",
"uuid": "^14.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"jsdom": "^29.0.2",
"oxfmt": "^0.46.0",
"oxlint": "^1.61.0",
"oxlint-tsgolint": "^0.21.1",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"scripts": {
"build": "exit 0",
"check": "pnpm lint && pnpm test && pnpm typecheck",
"format": "oxfmt --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json,css}\"",
"lint": "oxlint src",
"test": "vitest --coverage --pass-with-no-tests",
"typecheck": "tsc"
}
}