@skyramp/mcp 0.0.11 → 0.0.12

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.
@@ -152,7 +152,10 @@ ${result}
152
152
  method: params.method,
153
153
  apiSchema: params.apiSchema ? [params.apiSchema] : [],
154
154
  language: params.language ?? "python",
155
- framework: params.framework ?? "",
155
+ framework: params.framework ??
156
+ (params.language === "typescript" || params.language === "javascript"
157
+ ? "playwright"
158
+ : ""),
156
159
  output: params.output,
157
160
  outputDir: params.outputDir,
158
161
  force: params.force ?? true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyramp/mcp",
3
- "version": "0.0.11",
3
+ "version": "0.0.12",
4
4
  "main": "build/index.js",
5
5
  "type": "module",
6
6
  "bin": {
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "dependencies": {
44
44
  "@modelcontextprotocol/sdk": "^1.11.4",
45
- "@skyramp/skyramp": "^1.2.11",
45
+ "@skyramp/skyramp": "^1.2.13",
46
46
  "dockerode": "^4.0.6",
47
47
  "zod": "^3.25.3"
48
48
  },