motebit 1.0.0 → 1.0.1

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.
Files changed (3) hide show
  1. package/README.md +9 -1
  2. package/dist/index.js +51102 -12482
  3. package/package.json +37 -26
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "motebit",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "description": "Reference runtime and operator console for sovereign AI agents — REPL, daemon, delegation, MCP server. Persistent Ed25519 identity, signed execution receipts, governance at the boundary.",
6
6
  "main": "./dist/index.js",
@@ -15,7 +15,7 @@
15
15
  "NOTICE",
16
16
  "README.md"
17
17
  ],
18
- "license": "BSL-1.1",
18
+ "license": "BUSL-1.1",
19
19
  "keywords": [
20
20
  "motebit",
21
21
  "agent",
@@ -44,13 +44,21 @@
44
44
  "node": ">=20"
45
45
  },
46
46
  "dependencies": {
47
+ "@hono/node-server": "^1.19.12",
48
+ "@hono/node-ws": "^1.3.0",
47
49
  "@modelcontextprotocol/sdk": "^1.29.0",
48
50
  "@noble/curves": "^1.9.0",
49
51
  "@noble/ed25519": "~3.0.1",
50
52
  "@noble/hashes": "~1.8.0",
51
53
  "@solana/spl-token": "^0.4.9",
52
54
  "@solana/web3.js": "^1.95.0",
55
+ "@x402/core": "^2.6.0",
56
+ "@x402/evm": "^2.6.0",
57
+ "@x402/hono": "^2.6.0",
58
+ "better-sqlite3": "^12.0.0",
59
+ "hono": "^4.12.9",
53
60
  "sql.js": "^1.14.1",
61
+ "stripe": "^17.0.0",
54
62
  "vscode-jsonrpc": "^8.2.1",
55
63
  "vscode-languageserver": "^9.0.1",
56
64
  "vscode-languageserver-textdocument": "^1.0.12",
@@ -65,30 +73,32 @@
65
73
  "tsx": "^4.19.0",
66
74
  "typescript": "^5.6.0",
67
75
  "vitest": "^2.1.0",
68
- "@motebit/ai-core": "0.2.0",
69
- "@motebit/behavior-engine": "0.1.18",
70
- "@motebit/core-identity": "0.1.18",
71
- "@motebit/crypto": "1.0.0",
72
- "@motebit/encryption": "0.2.0",
73
- "@motebit/event-log": "0.1.18",
74
- "@motebit/gradient": "0.1.18",
75
- "@motebit/identity-file": "0.1.18",
76
- "@motebit/mcp-client": "0.1.18",
77
- "@motebit/mcp-server": "0.1.18",
78
- "@motebit/memory-graph": "0.2.0",
79
- "@motebit/persistence": "0.1.18",
80
- "@motebit/planner": "0.1.18",
81
- "@motebit/policy": "0.1.18",
82
- "@motebit/privacy-layer": "0.1.18",
83
- "@motebit/runtime": "0.2.0",
84
- "@motebit/sdk": "1.0.0",
85
- "@motebit/self-knowledge": "0.1.17",
86
- "@motebit/state-vector": "0.1.18",
87
- "@motebit/sync-engine": "0.1.18",
88
- "@motebit/tools": "0.2.0",
89
- "@motebit/voice": "0.1.15",
90
- "@motebit/wallet-solana": "0.2.0",
91
- "@motebit/wire-schemas": "0.2.0"
76
+ "@motebit/ai-core": "0.0.0-private",
77
+ "@motebit/api": "0.0.0-private",
78
+ "@motebit/behavior-engine": "0.0.0-private",
79
+ "@motebit/core-identity": "0.0.0-private",
80
+ "@motebit/crypto": "1.1.0",
81
+ "@motebit/encryption": "0.0.0-private",
82
+ "@motebit/event-log": "0.0.0-private",
83
+ "@motebit/gradient": "0.0.0-private",
84
+ "@motebit/identity-file": "0.0.0-private",
85
+ "@motebit/mcp-client": "0.0.0-private",
86
+ "@motebit/mcp-server": "0.0.0-private",
87
+ "@motebit/memory-graph": "0.0.0-private",
88
+ "@motebit/persistence": "0.0.0-private",
89
+ "@motebit/planner": "0.0.0-private",
90
+ "@motebit/policy": "0.0.0-private",
91
+ "@motebit/privacy-layer": "0.0.0-private",
92
+ "@motebit/runtime": "0.0.0-private",
93
+ "@motebit/sdk": "1.0.1",
94
+ "@motebit/self-knowledge": "0.0.0-private",
95
+ "@motebit/state-vector": "0.0.0-private",
96
+ "@motebit/sync-engine": "0.0.0-private",
97
+ "@motebit/tools": "0.0.0-private",
98
+ "@motebit/verify": "1.1.0",
99
+ "@motebit/voice": "0.0.0-private",
100
+ "@motebit/wallet-solana": "0.0.0-private",
101
+ "@motebit/wire-schemas": "0.0.0-private"
92
102
  },
93
103
  "scripts": {
94
104
  "start": "tsx src/index.ts",
@@ -96,6 +106,7 @@
96
106
  "build-schema": "tsx scripts/build-schema.ts",
97
107
  "test": "vitest run --passWithNoTests",
98
108
  "test:coverage": "vitest run --coverage",
109
+ "test:dogfood": "scripts/federation-dogfood.sh",
99
110
  "typecheck": "tsc --noEmit",
100
111
  "lint": "eslint src/",
101
112
  "lint:pack": "publint --strict",