This commit is contained in:
Chris Tate
2026-01-10 11:33:37 -06:00
commit 2d0520b770
12 changed files with 1576 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
{
"name": "veb",
"version": "1.0.0",
"description": "Headless browser automation CLI for agents and humans",
"type": "module",
"main": "dist/index.js",
"bin": {
"veb": "./bin/veb"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts"
},
"keywords": [
"browser",
"automation",
"headless",
"playwright",
"cli",
"agent"
],
"author": "",
"license": "MIT",
"dependencies": {
"playwright": "^1.40.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
}
}