-
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) · 2.52 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 2.52 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
{
"type": "module",
"scripts": {
"pretest": "node tools/dev/checkSharedExtractionGuard.mjs",
"test": "node ./scripts/run-node-tests.mjs",
"build:manifest": "node ./scripts/generate-sample-manifest.mjs",
"build:curriculum-validation-artifact": "node ./scripts/generate-curriculum-validation-artifact.mjs",
"sync:tool-hints": "node ./scripts/sync-tool-hints-from-workspace-manager.mjs",
"normalize:games-presentation": "node ./scripts/normalize-games-presentation.mjs",
"check:shared-extraction-guard": "node tools/dev/checkSharedExtractionGuard.mjs",
"check:phase24-closeout-guard": "node tools/dev/checkPhase24CloseoutExecutionGuard.mjs",
"check:style-system-guard": "node tools/dev/checkStyleSystemGuard.mjs",
"check:games-template-contract": "node ./scripts/validate-games-template-contract.mjs",
"codex:review-artifacts": "node ./scripts/write-codex-review-artifacts.mjs",
"test:asset-manager-v2": "playwright test tests/playwright/tools/AssetManagerV2.spec.mjs --project=playwright --workers=1 --reporter=list",
"test:preview-generator-v2": "playwright test tests/playwright/tools/PreviewGeneratorV2Baseline.spec.mjs --project=playwright --workers=1 --reporter=list",
"test:workspace-v2": "playwright test tests/playwright/tools/WorkspaceManagerV2.spec.mjs --project=playwright --workers=1 --reporter=list",
"test:launch-smoke": "node ./tests/runtime/LaunchSmokeAllEntries.test.mjs",
"test:launch-smoke:games": "node ./tests/runtime/LaunchSmokeAllEntries.test.mjs --games",
"test:workspace-manager:games": "node ./tests/runtime/GamesIndexWorkspaceManagerOpen.test.mjs",
"test:manifest-payload:games": "node ./tests/runtime/GameManifestPayloadExpectations.test.mjs",
"test:sample-standalone:data-flow": "node ./tests/runtime/SampleStandaloneToolDataFlow.test.mjs"
},
"dependencies": {
"ws": "^8.20.0"
},
"name": "html-javascript-gaming",
"version": "1.0.0",
"description": "> Learn, build, and scale 2D → 3D browser games with a structured engine, integrated tools, and progressive samples.",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ToolboxAid/HTML-JavaScript-Gaming.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ToolboxAid/HTML-JavaScript-Gaming/issues"
},
"homepage": "https://github.com/ToolboxAid/HTML-JavaScript-Gaming#readme",
"devDependencies": {
"@playwright/test": "^1.59.1"
}
}