@vinkius-core/mcp-fusion 3.0.0 → 3.1.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.
package/package.json CHANGED
@@ -1,148 +1,149 @@
1
- {
2
- "name": "@vinkius-core/mcp-fusion",
3
- "version": "3.0.0",
4
- "description": "MVA (Model-View-Agent) framework for the Model Context Protocol. Structured perception packages with Presenters, cognitive guardrails, self-healing errors, action consolidation, and tRPC-style type safety — so AI agents perceive and act on your data deterministically.",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "bin": {
9
- "fusion": "./dist/cli/fusion.js"
10
- },
11
- "exports": {
12
- ".": {
13
- "import": "./dist/index.js",
14
- "types": "./dist/index.d.ts"
15
- },
16
- "./client": {
17
- "import": "./dist/client/index.js",
18
- "types": "./dist/client/index.d.ts"
19
- },
20
- "./ui": {
21
- "import": "./dist/presenter/ui.js",
22
- "types": "./dist/presenter/ui.d.ts"
23
- },
24
- "./presenter": {
25
- "import": "./dist/presenter/index.js",
26
- "types": "./dist/presenter/index.d.ts"
27
- },
28
- "./prompt": {
29
- "import": "./dist/prompt/index.js",
30
- "types": "./dist/prompt/index.d.ts"
31
- },
32
- "./state-sync": {
33
- "import": "./dist/state-sync/index.js",
34
- "types": "./dist/state-sync/index.d.ts"
35
- },
36
- "./observability": {
37
- "import": "./dist/observability/index.js",
38
- "types": "./dist/observability/index.d.ts"
39
- },
40
- "./dev": {
41
- "import": "./dist/server/DevServer.js",
42
- "types": "./dist/server/DevServer.d.ts"
43
- },
44
- "./schema": {
45
- "import": "./dist/core/StandardSchema.js",
46
- "types": "./dist/core/StandardSchema.d.ts"
47
- },
48
- "./testing": {
49
- "import": "./dist/testing/MvaMetaSymbol.js",
50
- "types": "./dist/testing/MvaMetaSymbol.d.ts"
51
- },
52
- "./introspection": {
53
- "import": "./dist/introspection/index.js",
54
- "types": "./dist/introspection/index.d.ts"
55
- },
56
- "./sandbox": {
57
- "import": "./dist/sandbox/index.js",
58
- "types": "./dist/sandbox/index.d.ts"
59
- }
60
- },
61
- "scripts": {
62
- "build": "tsc",
63
- "lint": "eslint src/",
64
- "lint:fix": "eslint src/ --fix",
65
- "test": "vitest run",
66
- "test:coverage": "vitest run --coverage",
67
- "prepublishOnly": "npm run build"
68
- },
69
- "keywords": [
70
- "mcp",
71
- "model-context-protocol",
72
- "ai",
73
- "llm",
74
- "tools",
75
- "typescript",
76
- "framework",
77
- "middleware",
78
- "zod",
79
- "mva",
80
- "model-view-agent",
81
- "presenter",
82
- "guardrails",
83
- "agentic",
84
- "structured-data",
85
- "action-consolidation",
86
- "dlp",
87
- "compliance",
88
- "pii-redaction",
89
- "fsm",
90
- "state-machine",
91
- "anti-hallucination"
92
- ],
93
- "author": "Vinkius Labs",
94
- "repository": {
95
- "type": "git",
96
- "url": "git+https://github.com/vinkius-labs/mcp-fusion.git",
97
- "directory": "packages/core"
98
- },
99
- "bugs": {
100
- "url": "https://github.com/vinkius-labs/mcp-fusion/issues"
101
- },
102
- "homepage": "https://mcp-fusion.vinkius.com/",
103
- "files": [
104
- "dist",
105
- "README.md",
106
- "CHANGELOG.md",
107
- "LICENSE"
108
- ],
109
- "engines": {
110
- "node": ">=18.0.0"
111
- },
112
- "publishConfig": {
113
- "access": "public"
114
- },
115
- "dependencies": {
116
- "@toon-format/toon": "^2.1.0",
117
- "zod-to-json-schema": "^3.25.1"
118
- },
119
- "peerDependencies": {
120
- "@modelcontextprotocol/sdk": "^1.12.1",
121
- "fast-json-stringify": "^6.0.0",
122
- "fast-redact": "^3.0.0",
123
- "isolated-vm": "^5.0.4",
124
- "xstate": "^5.0.0",
125
- "zod": "^3.25.1 || ^4.0.0"
126
- },
127
- "peerDependenciesMeta": {
128
- "zod": {
129
- "optional": true
130
- },
131
- "isolated-vm": {
132
- "optional": true
133
- },
134
- "fast-json-stringify": {
135
- "optional": true
136
- },
137
- "fast-redact": {
138
- "optional": true
139
- },
140
- "xstate": {
141
- "optional": true
142
- }
143
- },
144
- "license": "Apache-2.0",
145
- "devDependencies": {
146
- "fast-redact": "^3.5.0"
147
- }
1
+ {
2
+ "name": "@vinkius-core/mcp-fusion",
3
+ "version": "3.1.1",
4
+ "description": "MVA (Model-View-Agent) framework for the Model Context Protocol. Structured perception packages with Presenters, cognitive guardrails, self-healing errors, action consolidation, and tRPC-style type safety — so AI agents perceive and act on your data deterministically.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "fusion": "./dist/cli/fusion.js"
10
+ },
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/index.js",
14
+ "types": "./dist/index.d.ts"
15
+ },
16
+ "./client": {
17
+ "import": "./dist/client/index.js",
18
+ "types": "./dist/client/index.d.ts"
19
+ },
20
+ "./ui": {
21
+ "import": "./dist/presenter/ui.js",
22
+ "types": "./dist/presenter/ui.d.ts"
23
+ },
24
+ "./presenter": {
25
+ "import": "./dist/presenter/index.js",
26
+ "types": "./dist/presenter/index.d.ts"
27
+ },
28
+ "./prompt": {
29
+ "import": "./dist/prompt/index.js",
30
+ "types": "./dist/prompt/index.d.ts"
31
+ },
32
+ "./state-sync": {
33
+ "import": "./dist/state-sync/index.js",
34
+ "types": "./dist/state-sync/index.d.ts"
35
+ },
36
+ "./observability": {
37
+ "import": "./dist/observability/index.js",
38
+ "types": "./dist/observability/index.d.ts"
39
+ },
40
+ "./dev": {
41
+ "import": "./dist/server/DevServer.js",
42
+ "types": "./dist/server/DevServer.d.ts"
43
+ },
44
+ "./schema": {
45
+ "import": "./dist/core/StandardSchema.js",
46
+ "types": "./dist/core/StandardSchema.d.ts"
47
+ },
48
+ "./testing": {
49
+ "import": "./dist/testing/MvaMetaSymbol.js",
50
+ "types": "./dist/testing/MvaMetaSymbol.d.ts"
51
+ },
52
+ "./introspection": {
53
+ "import": "./dist/introspection/index.js",
54
+ "types": "./dist/introspection/index.d.ts"
55
+ },
56
+ "./sandbox": {
57
+ "import": "./dist/sandbox/index.js",
58
+ "types": "./dist/sandbox/index.d.ts"
59
+ }
60
+ },
61
+ "scripts": {
62
+ "build": "rimraf dist && tsc",
63
+ "lint": "eslint src/",
64
+ "lint:fix": "eslint src/ --fix",
65
+ "test": "vitest run",
66
+ "test:coverage": "vitest run --coverage",
67
+ "prepublishOnly": "npm run build"
68
+ },
69
+ "keywords": [
70
+ "mcp",
71
+ "model-context-protocol",
72
+ "ai",
73
+ "llm",
74
+ "tools",
75
+ "typescript",
76
+ "framework",
77
+ "middleware",
78
+ "zod",
79
+ "mva",
80
+ "model-view-agent",
81
+ "presenter",
82
+ "guardrails",
83
+ "agentic",
84
+ "structured-data",
85
+ "action-consolidation",
86
+ "dlp",
87
+ "compliance",
88
+ "pii-redaction",
89
+ "fsm",
90
+ "state-machine",
91
+ "anti-hallucination"
92
+ ],
93
+ "author": "Vinkius Labs",
94
+ "repository": {
95
+ "type": "git",
96
+ "url": "git+https://github.com/vinkius-labs/mcp-fusion.git",
97
+ "directory": "packages/core"
98
+ },
99
+ "bugs": {
100
+ "url": "https://github.com/vinkius-labs/mcp-fusion/issues"
101
+ },
102
+ "homepage": "https://mcp-fusion.vinkius.com/",
103
+ "files": [
104
+ "dist",
105
+ "README.md",
106
+ "CHANGELOG.md",
107
+ "LICENSE"
108
+ ],
109
+ "engines": {
110
+ "node": ">=18.0.0"
111
+ },
112
+ "publishConfig": {
113
+ "access": "public"
114
+ },
115
+ "dependencies": {
116
+ "@toon-format/toon": "^2.1.0",
117
+ "zod-to-json-schema": "^3.25.1"
118
+ },
119
+ "peerDependencies": {
120
+ "@modelcontextprotocol/sdk": "^1.12.1",
121
+ "fast-json-stringify": "^6.0.0",
122
+ "fast-redact": "^3.0.0",
123
+ "isolated-vm": "^5.0.4",
124
+ "xstate": "^5.0.0",
125
+ "zod": "^3.25.1 || ^4.0.0"
126
+ },
127
+ "peerDependenciesMeta": {
128
+ "zod": {
129
+ "optional": true
130
+ },
131
+ "isolated-vm": {
132
+ "optional": true
133
+ },
134
+ "fast-json-stringify": {
135
+ "optional": true
136
+ },
137
+ "fast-redact": {
138
+ "optional": true
139
+ },
140
+ "xstate": {
141
+ "optional": true
142
+ }
143
+ },
144
+ "license": "Apache-2.0",
145
+ "devDependencies": {
146
+ "fast-redact": "^3.5.0",
147
+ "rimraf": "^6.0.0"
148
+ }
148
149
  }