@johngalt5/bsv-overlay 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +339 -0
- package/SKILL.md +327 -0
- package/clawdbot.plugin.json +55 -0
- package/index.ts +1062 -0
- package/package.json +47 -0
- package/scripts/overlay-cli.mjs +4536 -0
- package/scripts/setup.sh +96 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@johngalt5/bsv-overlay",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Clawdbot BSV Overlay — agent discovery, service marketplace, and micropayments on the BSV blockchain",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"index.ts",
|
|
8
|
+
"clawdbot.plugin.json",
|
|
9
|
+
"scripts/",
|
|
10
|
+
"SKILL.md",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"cli": "node scripts/overlay-cli.mjs",
|
|
15
|
+
"postinstall": "node -e \"try{require('better-sqlite3')}catch{console.log('Note: better-sqlite3 requires build tools. If install failed, ensure python3 and a C++ compiler are available.')}\""
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@a2a-bsv/core": "^0.1.0",
|
|
19
|
+
"@bsv/sdk": "^1.10.3",
|
|
20
|
+
"knex": "^3.1.0",
|
|
21
|
+
"better-sqlite3": "^11.0.0"
|
|
22
|
+
},
|
|
23
|
+
"optionalDependencies": {
|
|
24
|
+
"ws": "^8.19.0"
|
|
25
|
+
},
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/galt-tr/bsv-overlay-skill.git"
|
|
29
|
+
},
|
|
30
|
+
"keywords": [
|
|
31
|
+
"clawdbot",
|
|
32
|
+
"plugin",
|
|
33
|
+
"bsv",
|
|
34
|
+
"overlay",
|
|
35
|
+
"marketplace",
|
|
36
|
+
"micropayments",
|
|
37
|
+
"agent"
|
|
38
|
+
],
|
|
39
|
+
"author": "Galt TR",
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=20.0.0"
|
|
43
|
+
},
|
|
44
|
+
"clawdbot": {
|
|
45
|
+
"extensions": ["./index.ts"]
|
|
46
|
+
}
|
|
47
|
+
}
|