motebit 0.6.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/LICENSE +112 -0
- package/README.md +69 -0
- package/dist/index.js +29562 -0
- package/package.json +88 -0
package/package.json
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "motebit",
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Sovereign AI agent — persistent identity, accumulated trust, governance at the boundary",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"motebit": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/index.js",
|
|
12
|
+
"dist/index.js.map",
|
|
13
|
+
"LICENSE",
|
|
14
|
+
"README.md"
|
|
15
|
+
],
|
|
16
|
+
"license": "BSL-1.1",
|
|
17
|
+
"keywords": [
|
|
18
|
+
"motebit",
|
|
19
|
+
"agent",
|
|
20
|
+
"ai",
|
|
21
|
+
"identity",
|
|
22
|
+
"ed25519",
|
|
23
|
+
"cli",
|
|
24
|
+
"repl",
|
|
25
|
+
"daemon",
|
|
26
|
+
"mcp",
|
|
27
|
+
"sovereign"
|
|
28
|
+
],
|
|
29
|
+
"homepage": "https://github.com/motebit/motebit/tree/main/apps/cli#readme",
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/motebit/motebit/issues"
|
|
32
|
+
},
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "https://github.com/motebit/motebit",
|
|
36
|
+
"directory": "apps/cli"
|
|
37
|
+
},
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public"
|
|
40
|
+
},
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=20"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
46
|
+
"sql.js": "^1.11.0",
|
|
47
|
+
"ws": "^8.18.0"
|
|
48
|
+
},
|
|
49
|
+
"optionalDependencies": {
|
|
50
|
+
"better-sqlite3": "^11.0.0",
|
|
51
|
+
"@xenova/transformers": "^2.17.2"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@types/better-sqlite3": "^7.6.0",
|
|
55
|
+
"@types/node": "^22.0.0",
|
|
56
|
+
"tsup": "^8.0.0",
|
|
57
|
+
"tsx": "^4.19.0",
|
|
58
|
+
"typescript": "^5.6.0",
|
|
59
|
+
"vitest": "^2.1.0",
|
|
60
|
+
"@motebit/runtime": "0.1.4",
|
|
61
|
+
"@motebit/ai-core": "0.1.4",
|
|
62
|
+
"@motebit/event-log": "0.1.4",
|
|
63
|
+
"@motebit/memory-graph": "0.1.4",
|
|
64
|
+
"@motebit/gradient": "0.1.4",
|
|
65
|
+
"@motebit/sdk": "0.6.0",
|
|
66
|
+
"@motebit/state-vector": "0.1.4",
|
|
67
|
+
"@motebit/behavior-engine": "0.1.4",
|
|
68
|
+
"@motebit/persistence": "0.1.4",
|
|
69
|
+
"@motebit/planner": "0.1.4",
|
|
70
|
+
"@motebit/policy": "0.1.4",
|
|
71
|
+
"@motebit/sync-engine": "0.1.4",
|
|
72
|
+
"@motebit/tools": "0.1.4",
|
|
73
|
+
"@motebit/mcp-client": "0.1.4",
|
|
74
|
+
"@motebit/mcp-server": "0.1.4",
|
|
75
|
+
"@motebit/crypto": "0.1.4",
|
|
76
|
+
"@motebit/core-identity": "0.1.4",
|
|
77
|
+
"@motebit/identity-file": "0.1.4"
|
|
78
|
+
},
|
|
79
|
+
"scripts": {
|
|
80
|
+
"start": "tsx src/index.ts",
|
|
81
|
+
"build": "tsup",
|
|
82
|
+
"test": "vitest run --passWithNoTests",
|
|
83
|
+
"test:coverage": "vitest run --coverage",
|
|
84
|
+
"typecheck": "tsc --noEmit",
|
|
85
|
+
"lint": "eslint src/",
|
|
86
|
+
"clean": "rm -rf dist .turbo *.tsbuildinfo"
|
|
87
|
+
}
|
|
88
|
+
}
|