sunpeak 0.16.4 → 0.16.7

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,6 +1,6 @@
1
1
  {
2
2
  "name": "sunpeak",
3
- "version": "0.16.4",
3
+ "version": "0.16.7",
4
4
  "description": "Local-first MCP Apps framework. Quickstart, build, test, and ship your Claude or ChatGPT App!",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -93,11 +93,12 @@
93
93
  "react-dom": "^18.0.0 || ^19.0.0"
94
94
  },
95
95
  "dependencies": {
96
+ "@clack/prompts": "^1.1.0",
96
97
  "@modelcontextprotocol/ext-apps": "^1.0.1",
97
98
  "@modelcontextprotocol/sdk": "^1.25.2",
98
99
  "clsx": "^2.1.1",
99
- "tailwind-merge": "^3.4.0",
100
100
  "esbuild": "^0.27.0",
101
+ "tailwind-merge": "^3.4.0",
101
102
  "zod": "^3.25.76"
102
103
  },
103
104
  "devDependencies": {
@@ -354,7 +354,7 @@ function AlertBanner({ alert }: { alert: Alert }) {
354
354
  const config = alertTypeConfig[alert.type];
355
355
  return (
356
356
  <div
357
- className="flex items-start gap-2 p-3 rounded-lg"
357
+ className="flex items-center gap-2 p-3 rounded-lg"
358
358
  style={{
359
359
  backgroundColor: config.bg,
360
360
  borderWidth: 1,
@@ -362,12 +362,12 @@ function AlertBanner({ alert }: { alert: Alert }) {
362
362
  borderColor: config.border,
363
363
  }}
364
364
  >
365
- <span className="flex-shrink-0" style={{ color: config.text }}>
365
+ <span className="flex-shrink-0 text-base leading-none" style={{ color: config.text }}>
366
366
  {config.icon}
367
367
  </span>
368
- <p className="text-sm" style={{ color: config.text }}>
368
+ <span className="text-sm" style={{ color: config.text }}>
369
369
  {alert.message}
370
- </p>
370
+ </span>
371
371
  </div>
372
372
  );
373
373
  }