Initialize action topology engine

This commit is contained in:
赵义仑
2026-06-16 14:26:08 +08:00
commit 853404c67a
17 changed files with 3664 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"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"
}
}