@mastra/deployer 1.22.0-alpha.0 → 1.22.0-alpha.2
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/CHANGELOG.md +20 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/server/index.cjs +87 -0
- package/dist/server/index.cjs.map +1 -1
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +87 -0
- package/dist/server/index.js.map +1 -1
- package/package.json +8 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/deployer",
|
|
3
|
-
"version": "1.22.0-alpha.
|
|
3
|
+
"version": "1.22.0-alpha.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -89,6 +89,7 @@
|
|
|
89
89
|
"@babel/core": "^7.29.0",
|
|
90
90
|
"@babel/preset-typescript": "^7.28.5",
|
|
91
91
|
"@babel/traverse": "^7.29.0",
|
|
92
|
+
"@hono/node-ws": "^1.3.0",
|
|
92
93
|
"@optimize-lodash/rollup-plugin": "^5.1.0",
|
|
93
94
|
"@rollup/plugin-alias": "6.0.0",
|
|
94
95
|
"@rollup/plugin-commonjs": "29.0.2",
|
|
@@ -111,7 +112,8 @@
|
|
|
111
112
|
"strip-json-comments": "^5.0.3",
|
|
112
113
|
"tinyglobby": "^0.2.15",
|
|
113
114
|
"typescript-paths": "^1.5.1",
|
|
114
|
-
"
|
|
115
|
+
"ws": "^8.18.0",
|
|
116
|
+
"@mastra/server": "1.22.0-alpha.2"
|
|
115
117
|
},
|
|
116
118
|
"devDependencies": {
|
|
117
119
|
"@hono/node-server": "^1.19.11",
|
|
@@ -132,10 +134,11 @@
|
|
|
132
134
|
"vitest": "4.0.18",
|
|
133
135
|
"zod": "^4.3.6",
|
|
134
136
|
"@internal/lint": "0.0.78",
|
|
137
|
+
"@mastra/agent-browser": "0.1.0-alpha.0",
|
|
138
|
+
"@mastra/core": "1.22.0-alpha.2",
|
|
139
|
+
"@mastra/hono": "1.4.0-alpha.2",
|
|
135
140
|
"@internal/types-builder": "0.0.53",
|
|
136
|
-
"@mastra/
|
|
137
|
-
"@mastra/hono": "1.3.5-alpha.0",
|
|
138
|
-
"@mastra/server": "1.22.0-alpha.0",
|
|
141
|
+
"@mastra/server": "1.22.0-alpha.2",
|
|
139
142
|
"@mastra/mcp": "^1.4.1"
|
|
140
143
|
},
|
|
141
144
|
"peerDependencies": {
|