@msm-core/mini 0.1.0 → 0.3.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@msm-core/mini",
3
- "version": "0.1.0",
3
+ "version": "0.3.0",
4
4
  "description": "Portable AI agent execution loop — brain-agnostic, zero embedded databases",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -17,12 +17,32 @@
17
17
  "./adapters": {
18
18
  "types": "./dist/adapters/index.d.ts",
19
19
  "import": "./dist/adapters/index.js"
20
+ },
21
+ "./bridge": {
22
+ "types": "./dist/bridge/pipeline.d.ts",
23
+ "import": "./dist/bridge/pipeline.js"
20
24
  }
21
25
  },
22
26
  "files": [
23
27
  "dist",
24
- "README.md"
28
+ "README.md",
29
+ "CHANGELOG.md"
25
30
  ],
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "https://github.com/msm-core/sdk.git",
37
+ "directory": "mini"
38
+ },
39
+ "scripts": {
40
+ "build": "tsc",
41
+ "test": "vitest run",
42
+ "test:watch": "vitest",
43
+ "clean": "rm -rf dist",
44
+ "prepublishOnly": "npm run build && npm test"
45
+ },
26
46
  "peerDependencies": {
27
47
  "openai": ">=4.0.0",
28
48
  "@anthropic-ai/sdk": ">=0.20.0",
@@ -40,8 +60,7 @@
40
60
  }
41
61
  },
42
62
  "dependencies": {
43
- "ioredis": "^5.3.2",
44
- "zod": "^3.22.4"
63
+ "ioredis": "^5.3.2"
45
64
  },
46
65
  "devDependencies": {
47
66
  "@types/node": "^20.0.0",
@@ -57,11 +76,5 @@
57
76
  "portable"
58
77
  ],
59
78
  "author": "Emad Jumaah",
60
- "license": "MIT",
61
- "scripts": {
62
- "build": "tsc",
63
- "test": "vitest run",
64
- "test:watch": "vitest",
65
- "clean": "rm -rf dist"
66
- }
79
+ "license": "MIT"
67
80
  }