-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 846 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 846 Bytes
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
{
"name": "hive-ad-bid",
"version": "1.0.0",
"description": "IntraAgent advertising — second-price sealed-bid auction, impression ledger, daily x402 billing. 15% take. The agent ad exchange.",
"type": "module",
"main": "server.js",
"scripts": {
"start": "node server.js",
"check": "node --check server.js && node --check lib/auction.js && node --check lib/ledger.js && node --check lib/billing.js"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"express": "^4.18.2"
},
"keywords": [
"hive",
"mcp",
"agent",
"advertising",
"auction",
"x402",
"usdc",
"base",
"a2a",
"second-price"
],
"author": "Steve Rotzin <steve@thehiveryiq.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/srotzin/hive-ad-bid.git"
}
}