27 lines
706 B
JSON
27 lines
706 B
JSON
{
|
|
"name": "action-topology-engine",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Deterministic website action topology engine built on Playwright.",
|
|
"bin": {
|
|
"action-topology": "./dist/cli.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
"scan": "tsx src/cli.ts scan",
|
|
"explore": "tsx src/cli.ts explore",
|
|
"example": "tsx src/cli.ts explore --url ./examples/simple.html --out artifacts/simple-graph.json --max-actions 8"
|
|
},
|
|
"dependencies": {
|
|
"playwright": "^1.61.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.15.30",
|
|
"tsx": "^4.20.3",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|
|
|