@vurb/core 3.8.2 → 3.8.3

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,153 +1,153 @@
1
- {
2
- "name": "@vurb/core",
3
- "version": "3.8.2",
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
- "vurb": "./dist/cli/vurb.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": "Renato Marinho",
94
- "repository": {
95
- "type": "git",
96
- "url": "git+https://github.com/vinkius-labs/vurb.ts.git",
97
- "directory": "packages/core"
98
- },
99
- "bugs": {
100
- "url": "https://github.com/vinkius-labs/vurb.ts/issues"
101
- },
102
- "homepage": "https://vurb.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
- "esbuild": "^0.24.0",
122
- "fast-json-stringify": "^6.0.0",
123
- "fast-redact": "^3.0.0",
124
- "isolated-vm": "^5.0.4",
125
- "xstate": "^5.0.0",
126
- "zod": "^3.25.1 || ^4.0.0"
127
- },
128
- "peerDependenciesMeta": {
129
- "zod": {
130
- "optional": true
131
- },
132
- "isolated-vm": {
133
- "optional": true
134
- },
135
- "esbuild": {
136
- "optional": true
137
- },
138
- "fast-json-stringify": {
139
- "optional": true
140
- },
141
- "fast-redact": {
142
- "optional": true
143
- },
144
- "xstate": {
145
- "optional": true
146
- }
147
- },
148
- "license": "Apache-2.0",
149
- "devDependencies": {
150
- "fast-redact": "^3.5.0",
151
- "rimraf": "^6.0.0"
152
- }
153
- }
1
+ {
2
+ "name": "@vurb/core",
3
+ "version": "3.8.3",
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
+ "vurb": "./dist/cli/vurb.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": "Renato Marinho",
94
+ "repository": {
95
+ "type": "git",
96
+ "url": "git+https://github.com/vinkius-labs/vurb.ts.git",
97
+ "directory": "packages/core"
98
+ },
99
+ "bugs": {
100
+ "url": "https://github.com/vinkius-labs/vurb.ts/issues"
101
+ },
102
+ "homepage": "https://vurb.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
+ "esbuild": "^0.24.0",
122
+ "fast-json-stringify": "^6.0.0",
123
+ "fast-redact": "^3.0.0",
124
+ "isolated-vm": "^5.0.4",
125
+ "xstate": "^5.0.0",
126
+ "zod": "^3.25.1 || ^4.0.0"
127
+ },
128
+ "peerDependenciesMeta": {
129
+ "zod": {
130
+ "optional": true
131
+ },
132
+ "isolated-vm": {
133
+ "optional": true
134
+ },
135
+ "esbuild": {
136
+ "optional": true
137
+ },
138
+ "fast-json-stringify": {
139
+ "optional": true
140
+ },
141
+ "fast-redact": {
142
+ "optional": true
143
+ },
144
+ "xstate": {
145
+ "optional": true
146
+ }
147
+ },
148
+ "license": "Apache-2.0",
149
+ "devDependencies": {
150
+ "fast-redact": "^3.5.0",
151
+ "rimraf": "^6.0.0"
152
+ }
153
+ }