-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"name": "phaser-flight-deck",
"version": "0.6.0",
"private": true,
"description": "Agent-tooling flight deck for Phaser 4 web-game projects: zero-dependency CLI execution core, single declarative command registry, Pi extension wrapper, project skills and runtime probe.",
"type": "module",
"keywords": [
"phaser",
"phaser4",
"testing",
"automation",
"agent"
],
"files": [
"cli/",
"registry/",
"extensions/",
"skills/",
"probes/",
"templates/",
"README.md",
"LICENSE"
],
"bin": {
"pdeck": "./cli/pdeck.mjs"
},
"scripts": {
"generate": "node scripts/generate-adapters.mjs",
"test": "node --test tests/cli.test.mjs tests/adapters.test.mjs"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://github.com/sumo91/phaser-flight-deck.git"
},
"bugs": {
"url": "https://github.com/sumo91/phaser-flight-deck/issues"
},
"homepage": "https://github.com/sumo91/phaser-flight-deck#readme",
"license": "MIT",
"dependencies": {
"playwright-core": "^1.62.1"
}
}