-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.31 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "web-agent-bridge",
"version": "3.20.0",
"description": "Agent Transaction Bridge — the trust + transaction layer for agentic commerce. Signed intent contracts, idempotent transactions, Ed25519-verifiable receipts, explicit compensation. Plus the original WAB stack: sovereign browser, ShieldQR, SSL health, DNS discovery, agent mesh, and unified gateway for safe AI–website interaction.",
"author": "Web Agent Bridge <dev@webagentbridge.com>",
"main": "server/index.js",
"bin": {
"web-agent-bridge": "./bin/cli.js",
"wab": "./bin/cli.js",
"wab-agent": "./bin/cli.js",
"wab-init": "./bin/wab-init.js"
},
"scripts": {
"start": "node server/index.js",
"dev": "node server/index.js",
"test": "jest --forceExit --detectOpenHandles",
"build:script": "node scripts/build.js",
"prepublishOnly": "npm test"
},
"keywords": [
"ai",
"agent",
"bridge",
"protocol",
"platform",
"automation",
"web",
"ai-agent",
"agent-mesh",
"sovereign-browser",
"phone-shield",
"dns-discovery",
"api-gateway",
"browser-automation",
"webdriver-bidi"
],
"repository": {
"type": "git",
"url": "git+https://github.com/abokenan444/web-agent-bridge.git"
},
"homepage": "https://github.com/abokenan444/web-agent-bridge#readme",
"bugs": {
"url": "https://github.com/abokenan444/web-agent-bridge/issues"
},
"files": [
"bin/",
"server/",
"public/*.html",
"public/*.txt",
"public/*.xml",
"public/*.json",
"public/css/",
"public/js/",
"public/script/",
"public/assets/",
"public/.well-known/",
"script/",
"sdk/",
"templates/",
"examples/",
"README.md",
"README.ar.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"dependencies": {
"bcryptjs": "^3.0.3",
"better-sqlite3": "^11.6.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^8.0.7",
"stripe": "^20.4.1",
"ws": "^8.20.0"
},
"devDependencies": {
"all-contributors-cli": "^6.26.1",
"jest": "^30.3.0",
"supertest": "^7.2.2"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/packages/"
]
}
}