indelible-mcp 4.3.1 → 4.5.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/package.json +3 -2
- package/src/index.js +6885 -787
- package/src/lib/api-client.js +0 -293
- package/src/lib/config.js +0 -80
- package/src/lib/crypto.js +0 -66
- package/src/lib/spv.js +0 -559
- package/src/lib/transcript.js +0 -178
- package/src/tools/diary_chat.js +0 -176
- package/src/tools/diary_connect.js +0 -77
- package/src/tools/diary_save.js +0 -137
- package/src/tools/goals.js +0 -230
- package/src/tools/inner_state.js +0 -391
- package/src/tools/load_context.js +0 -330
- package/src/tools/load_file.js +0 -112
- package/src/tools/load_project.js +0 -140
- package/src/tools/load_style.js +0 -93
- package/src/tools/save_file.js +0 -257
- package/src/tools/save_project.js +0 -176
- package/src/tools/save_session.js +0 -709
- package/src/tools/save_style.js +0 -190
- package/src/tools/setup_wallet.js +0 -131
- package/src/tools/update_vault_index.js +0 -71
- package/src/tools/x402_fetch.js +0 -177
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "indelible-mcp",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.5.0",
|
|
4
4
|
"description": "Blockchain-backed memory and code storage for Claude Code. Save AI conversations and source code permanently on BSV.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"src/"
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
|
+
"test": "node --test test/*.test.js",
|
|
14
15
|
"start": "node src/index.js",
|
|
15
16
|
"build": "bun build --compile src/index.js --outfile dist/indelible.exe",
|
|
16
17
|
"build:all": "bun build --compile --target=bun-windows-x64 src/index.js --outfile dist/indelible-win-x64.exe && bun build --compile --target=bun-linux-x64 src/index.js --outfile dist/indelible-linux-x64 && bun build --compile --target=bun-darwin-arm64 src/index.js --outfile dist/indelible-darwin-arm64"
|
|
@@ -33,7 +34,7 @@
|
|
|
33
34
|
},
|
|
34
35
|
"homepage": "https://indelible.one",
|
|
35
36
|
"dependencies": {
|
|
36
|
-
"@bsv/sdk": "1.
|
|
37
|
+
"@bsv/sdk": "^2.1.0",
|
|
37
38
|
"cross-keychain": "^1.1.0"
|
|
38
39
|
}
|
|
39
40
|
}
|