openclaw-arcade-plugin 0.2.14 → 0.2.15

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/dist/index.js CHANGED
@@ -6,7 +6,7 @@ let isInitialized = false;
6
6
  * Transaction broadcasting and lifecycle tracking via BSV Arcade.
7
7
  */
8
8
  export function register(api) {
9
- const version = "0.2.13";
9
+ const version = "0.2.15";
10
10
  if (isInitialized)
11
11
  return;
12
12
  isInitialized = true;
package/index.ts CHANGED
@@ -10,7 +10,7 @@ let isInitialized = false;
10
10
  * Transaction broadcasting and lifecycle tracking via BSV Arcade.
11
11
  */
12
12
  export function register(api: any) {
13
- const version = "0.2.13";
13
+ const version = "0.2.15";
14
14
  if (isInitialized) return;
15
15
  isInitialized = true;
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-arcade-plugin",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
4
4
  "description": "OpenClaw plugin for transaction broadcasting and lifecycle tracking via BSV Arcade",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -18,11 +18,11 @@
18
18
  "lint": "eslint src/**/*.ts",
19
19
  "test": "npx tsx src/arcade.test.ts",
20
20
  "postversion": "node ../sync_versions.js",
21
- "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.')}\""
21
+ "postinstall": "node -e \"try{require('sqlite3')}catch{console.log('Note: sqlite3 requires build tools if prebuilt binaries are unavailable.')}\""
22
22
  },
23
23
  "dependencies": {
24
24
  "@bsv/sdk": "^2.0.13",
25
- "better-sqlite3": "11.3.0",
25
+ "sqlite3": "^5.1.7",
26
26
  "debug": "^4.4.0"
27
27
  },
28
28
  "devDependencies": {