@mnemopay/sdk 0.1.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 ADDED
@@ -0,0 +1,109 @@
1
+ {
2
+ "name": "@mnemopay/sdk",
3
+ "version": "0.1.0",
4
+ "description": "Give any AI agent memory and a wallet in 5 lines. Unified SDK for Mnemosyne (cognitive memory) + AgentPay (escrow economics).",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./dist/index.js",
10
+ "types": "./dist/index.d.ts"
11
+ },
12
+ "./middleware/openai": {
13
+ "import": "./dist/middleware/openai.js",
14
+ "types": "./dist/middleware/openai.d.ts"
15
+ },
16
+ "./middleware/anthropic": {
17
+ "import": "./dist/middleware/anthropic.js",
18
+ "types": "./dist/middleware/anthropic.d.ts"
19
+ },
20
+ "./langgraph": {
21
+ "import": "./dist/langgraph/tools.js",
22
+ "types": "./dist/langgraph/tools.d.ts"
23
+ },
24
+ "./mcp": {
25
+ "import": "./dist/mcp/server.js",
26
+ "types": "./dist/mcp/server.d.ts"
27
+ },
28
+ "./recall": {
29
+ "import": "./dist/recall/engine.js",
30
+ "types": "./dist/recall/engine.d.ts"
31
+ }
32
+ },
33
+ "bin": {
34
+ "mnemopay-mcp": "./dist/mcp/server.js"
35
+ },
36
+ "files": [
37
+ "dist",
38
+ "README.md",
39
+ "LICENSE"
40
+ ],
41
+ "scripts": {
42
+ "build": "tsc",
43
+ "test": "vitest run",
44
+ "test:watch": "vitest",
45
+ "lint": "tsc --noEmit",
46
+ "prepublishOnly": "echo build already done"
47
+ },
48
+ "keywords": [
49
+ "ai",
50
+ "agent",
51
+ "memory",
52
+ "payment",
53
+ "escrow",
54
+ "llm",
55
+ "openai",
56
+ "anthropic",
57
+ "langchain",
58
+ "langgraph",
59
+ "mcp",
60
+ "cognitive",
61
+ "wallet",
62
+ "reputation"
63
+ ],
64
+ "author": "Jerry Omiagbo <jeremiah@getbizsuite.com>",
65
+ "license": "MIT",
66
+ "repository": {
67
+ "type": "git",
68
+ "url": "https://github.com/t49qnsx7qt-kpanks/mnemopay-sdk.git"
69
+ },
70
+ "homepage": "https://github.com/t49qnsx7qt-kpanks/mnemopay-sdk",
71
+ "peerDependencies": {
72
+ "@anthropic-ai/sdk": ">=0.20.0",
73
+ "@langchain/core": ">=0.2.0",
74
+ "@langchain/langgraph": ">=0.1.0",
75
+ "@langchain/openai": ">=0.1.0",
76
+ "openai": ">=4.0.0",
77
+ "zod": ">=3.22.0"
78
+ },
79
+ "peerDependenciesMeta": {
80
+ "openai": {
81
+ "optional": true
82
+ },
83
+ "@anthropic-ai/sdk": {
84
+ "optional": true
85
+ },
86
+ "@langchain/core": {
87
+ "optional": true
88
+ },
89
+ "@langchain/langgraph": {
90
+ "optional": true
91
+ },
92
+ "@langchain/openai": {
93
+ "optional": true
94
+ },
95
+ "zod": {
96
+ "optional": true
97
+ }
98
+ },
99
+ "devDependencies": {
100
+ "@langchain/core": "^0.3.0",
101
+ "@types/node": "^25.5.0",
102
+ "typescript": "^5.5.0",
103
+ "vitest": "^2.0.0",
104
+ "zod": "^3.23.0"
105
+ },
106
+ "dependencies": {
107
+ "@modelcontextprotocol/sdk": "^1.29.0"
108
+ }
109
+ }