@mastra/deployer 0.15.3-alpha.4 → 0.15.3-alpha.5
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 +4037 -0
- package/package.json +16 -6
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/deployer",
|
|
3
|
-
"version": "0.15.3-alpha.
|
|
3
|
+
"version": "0.15.3-alpha.5",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
|
-
"dist"
|
|
7
|
+
"dist",
|
|
8
|
+
"CHANGELOG.md"
|
|
8
9
|
],
|
|
9
10
|
"main": "dist/index.js",
|
|
10
11
|
"types": "dist/index.d.ts",
|
|
@@ -107,11 +108,11 @@
|
|
|
107
108
|
"hono": "^4.8.12",
|
|
108
109
|
"local-pkg": "^1.1.2",
|
|
109
110
|
"resolve-from": "^5.0.0",
|
|
110
|
-
"rollup": "~4.
|
|
111
|
+
"rollup": "~4.50.0",
|
|
111
112
|
"rollup-plugin-esbuild": "^6.2.1",
|
|
112
113
|
"rollup-plugin-node-externals": "^8.0.1",
|
|
113
114
|
"typescript-paths": "^1.5.1",
|
|
114
|
-
"@mastra/server": "^0.15.3-alpha.
|
|
115
|
+
"@mastra/server": "^0.15.3-alpha.5"
|
|
115
116
|
},
|
|
116
117
|
"devDependencies": {
|
|
117
118
|
"@hono/node-server": "^1.17.1",
|
|
@@ -132,14 +133,23 @@
|
|
|
132
133
|
"vitest": "^3.2.4",
|
|
133
134
|
"zod": "^3.25.76",
|
|
134
135
|
"@internal/lint": "0.0.34",
|
|
135
|
-
"@mastra/core": "0.15.3-alpha.4",
|
|
136
136
|
"@internal/types-builder": "0.0.9",
|
|
137
|
-
"@mastra/
|
|
137
|
+
"@mastra/core": "0.15.3-alpha.5",
|
|
138
|
+
"@mastra/mcp": "^0.11.3-alpha.2"
|
|
138
139
|
},
|
|
139
140
|
"peerDependencies": {
|
|
140
141
|
"@mastra/core": ">=0.15.2-0 <0.16.0-0",
|
|
141
142
|
"zod": "^3.25.0 || ^4.0.0"
|
|
142
143
|
},
|
|
144
|
+
"homepage": "https://mastra.ai",
|
|
145
|
+
"repository": {
|
|
146
|
+
"type": "git",
|
|
147
|
+
"url": "git+https://github.com/mastra-ai/mastra.git",
|
|
148
|
+
"directory": "packages/deployer"
|
|
149
|
+
},
|
|
150
|
+
"bugs": {
|
|
151
|
+
"url": "https://github.com/mastra-ai/mastra/issues"
|
|
152
|
+
},
|
|
143
153
|
"scripts": {
|
|
144
154
|
"build": "tsup --silent --config tsup.config.ts",
|
|
145
155
|
"build:watch": "pnpm build --watch",
|