-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.71 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.71 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
{
"name": "@gamotions/phaser-runtime-editor",
"version": "0.1.2",
"description": "A Phaser 3/4 scene plugin that injects a runtime visual editor — drag objects, inspect properties, snap to grid, and export layout coordinates as JSON.",
"type": "module",
"license": "MIT",
"author": "gamotions",
"keywords": [
"phaser",
"phaser3",
"phaser4",
"editor",
"runtime-editor",
"level-editor",
"game-editor",
"layout",
"inspector",
"gamedev"
],
"repository": {
"type": "git",
"url": "https://github.com/ksi-digital/phaser-runtime-editor.git"
},
"homepage": "https://github.com/ksi-digital/phaser-runtime-editor#readme",
"bugs": {
"url": "https://github.com/ksi-digital/phaser-runtime-editor/issues"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"demo": "vite --config vite.demo.config.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"phaser": "^4.0.0-rc.1"
},
"devDependencies": {
"phaser": "^4.0.0-rc.6",
"typescript": "^5.7.0",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.0"
},
"dependencies": {
"@tweakpane/core": "^2.0.5",
"tweakpane": "^4.0.0"
}
}