-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.51 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
{
"name": "phaser-jsx",
"version": "0.16.3",
"description": "Use JSX in Phaser.",
"author": "Mark <mark@remarkablemark.org>",
"main": "./cjs/index.js",
"scripts": {
"build": "npm run build:cjs && npm run build:umd",
"build:cjs": "tsc --project tsconfig.build.json",
"build:umd": "rollup --config rollup.config.mts --failAfterWarnings",
"build:watch": "tsc --watch",
"clean": "rm -rf cjs coverage docs umd",
"docs": "typedoc",
"docs:watch": "npm run docs -- --watch",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:tsc": "tsc --project tsconfig.test.json",
"prepare": "husky",
"prepublishOnly": "npm run clean && npm run lint && npm run build && npm run lint:tsc && npm run test:ci",
"test": "vitest run",
"test:ci": "CI=true npm test -- --color --coverage",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remarkablegames/phaser-jsx.git"
},
"bugs": {
"url": "https://github.com/remarkablegames/phaser-jsx/issues"
},
"keywords": [
"phaser-jsx",
"phaser",
"jsx",
"react",
"ui",
"view",
"library",
"game"
],
"devDependencies": {
"@commitlint/cli": "21.1.0",
"@commitlint/config-conventional": "21.1.0",
"@eslint/compat": "2.1.0",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@rollup/plugin-commonjs": "29.0.3",
"@rollup/plugin-terser": "1.0.0",
"@rollup/plugin-typescript": "12.3.0",
"@types/node": "26.0.0",
"@types/react": "19.2.17",
"@vitest/coverage-v8": "4.1.9",
"eslint": "10.5.0",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-simple-import-sort": "13.0.0",
"eslint-plugin-tsdoc": "0.5.2",
"global-jsdom": "29.0.0",
"globals": "17.7.0",
"husky": "9.1.7",
"jsdom": "29.1.1",
"lint-staged": "17.0.8",
"phaser": "3.90.0",
"phaser3spectorjs": "0.0.8",
"prettier": "3.8.4",
"react": "19.2.7",
"rollup": "4.62.0",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typedoc": "0.28.19",
"typescript": "5.9.3",
"typescript-eslint": "8.62.0",
"vitest": "4.1.9",
"vitest-canvas-mock": "1.1.4"
},
"peerDependencies": {
"@types/react": "17 || 18 || 19",
"phaser": "3",
"react": "17 || 18 || 19"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"react": {
"optional": true
}
},
"files": [
"cjs/",
"jsx-dev-runtime/",
"jsx-runtime/",
"src/",
"umd/"
],
"license": "MIT"
}