v1.5.0: Add Full GUI Automation with Playwright

This commit is contained in:
admin
2026-02-26 16:20:27 +04:00
Unverified
parent 07b47fa952
commit c700d84f4f
5 changed files with 1056 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "qwenclaw",
"version": "1.4.3",
"version": "1.5.0",
"type": "module",
"bin": {
"qwenclaw": "./bin/qwenclaw.js"
@@ -16,12 +16,13 @@
"start:all": "bun run src/index.ts start --web --with-rig",
"test": "bun test",
"test:rig": "bun test tests/rig-integration.test.ts",
"postinstall": "chmod +x bin/qwenclaw.js 2>/dev/null || true"
"postinstall": "chmod +x bin/qwenclaw.js 2>/dev/null || true && npx playwright install chromium 2>/dev/null || true"
},
"devDependencies": {
"@types/bun": "^1.3.9"
},
"dependencies": {
"ogg-opus-decoder": "^1.7.3"
"ogg-opus-decoder": "^1.7.3",
"playwright": "^1.42.0"
}
}