-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.01 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.01 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
{
"name": "fpom-pacman",
"version": "1.0.0",
"description": "FPOM Meme Hunt web game (Pac-Man style promo mini-game)",
"main": "src/game.js",
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "node ./scripts/build.mjs",
"build:prod": "npm run build",
"preview": "python3 -m http.server 4178 -d dist",
"start": "npm run serve",
"serve": "python3 -m http.server 4177",
"test:smoke": "node \"${CODEX_HOME:-$HOME/.codex}/skills/develop-web-game/scripts/web_game_playwright_client.js\" --url http://localhost:4177 --actions-file ./tests/playwright/actions/smoke.json --iterations 1 --pause-ms 120 --screenshot-dir ./tests/playwright/artifacts/smoke"
},
"keywords": [
"fpom",
"pacman",
"massa",
"deweb",
"web3",
"html5-game",
"canvas-game",
"meme-game",
"javascript"
],
"author": "massivedev0",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"playwright": "^1.58.2"
}
}