stashes 0.1.3 → 0.1.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/dist/cli.js +71 -56
- package/dist/commands/setup.d.ts +1 -1
- package/dist/commands/setup.d.ts.map +1 -1
- package/dist/commands/setup.js +70 -57
- package/dist/commands/setup.js.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -1
package/dist/cli.js
CHANGED
|
@@ -19,6 +19,9 @@ var __toESM = (mod, isNodeMode, target) => {
|
|
|
19
19
|
var __require = import.meta.require;
|
|
20
20
|
|
|
21
21
|
// src/index.ts
|
|
22
|
+
import { readFileSync as readFileSync8 } from "fs";
|
|
23
|
+
import { join as join11, dirname as dirname4 } from "path";
|
|
24
|
+
import { fileURLToPath as fileURLToPath2 } from "url";
|
|
22
25
|
import { Command } from "commander";
|
|
23
26
|
|
|
24
27
|
// src/commands/start.ts
|
|
@@ -1799,6 +1802,8 @@ Cleaning up all stashes and worktrees...`);
|
|
|
1799
1802
|
import { existsSync as existsSync10, readFileSync as readFileSync7, writeFileSync as writeFileSync2, mkdirSync as mkdirSync4 } from "fs";
|
|
1800
1803
|
import { dirname as dirname3, join as join10 } from "path";
|
|
1801
1804
|
import { homedir } from "os";
|
|
1805
|
+
import * as p from "@clack/prompts";
|
|
1806
|
+
import pc from "picocolors";
|
|
1802
1807
|
var MCP_SERVER_NAME = "stashes";
|
|
1803
1808
|
var MCP_ENTRY_STANDARD = {
|
|
1804
1809
|
command: "npx",
|
|
@@ -1914,63 +1919,66 @@ function shortenPath(fullPath) {
|
|
|
1914
1919
|
return fullPath;
|
|
1915
1920
|
}
|
|
1916
1921
|
function showStatus(tools) {
|
|
1922
|
+
p.intro(pc.bgMagenta(pc.black(" stashes ")));
|
|
1917
1923
|
const detected = tools.filter((t) => t.detect());
|
|
1918
|
-
console.log("");
|
|
1919
|
-
console.log(" Stashes MCP Status");
|
|
1920
|
-
console.log(" " + "-".repeat(50));
|
|
1921
1924
|
if (detected.length === 0) {
|
|
1922
|
-
|
|
1923
|
-
|
|
1925
|
+
p.log.warn("No supported AI tools detected on this system.");
|
|
1926
|
+
p.outro("Nothing to show.");
|
|
1924
1927
|
return;
|
|
1925
1928
|
}
|
|
1926
|
-
const
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
console.log(` - ${name} not set up ${path}`);
|
|
1934
|
-
}
|
|
1935
|
-
}
|
|
1936
|
-
console.log("");
|
|
1929
|
+
const lines = detected.map((tool) => {
|
|
1930
|
+
const status = isConfigured(tool) ? pc.green("\u2713 Configured") : pc.yellow("\u25CB Not set up");
|
|
1931
|
+
return ` ${tool.name.padEnd(16)} ${status} ${pc.dim(shortenPath(tool.configPath))}`;
|
|
1932
|
+
});
|
|
1933
|
+
p.note(lines.join(`
|
|
1934
|
+
`), "MCP Server Status");
|
|
1935
|
+
p.outro(`${detected.length} tool${detected.length === 1 ? "" : "s"} detected.`);
|
|
1937
1936
|
}
|
|
1938
|
-
function runInstall(tools) {
|
|
1937
|
+
async function runInstall(tools) {
|
|
1938
|
+
p.intro(pc.bgMagenta(pc.black(" stashes ")));
|
|
1939
|
+
const s = p.spinner();
|
|
1940
|
+
s.start("Scanning for AI tools...");
|
|
1939
1941
|
const detected = tools.filter((t) => t.detect());
|
|
1940
|
-
|
|
1941
|
-
console.log(" Stashes Setup");
|
|
1942
|
-
console.log(" " + "-".repeat(50));
|
|
1942
|
+
s.stop(`Found ${pc.bold(String(detected.length))} AI tool${detected.length === 1 ? "" : "s"}`);
|
|
1943
1943
|
if (detected.length === 0) {
|
|
1944
|
-
|
|
1945
|
-
|
|
1944
|
+
p.log.warn("No supported AI tools detected on this system.");
|
|
1945
|
+
p.outro("Nothing to configure.");
|
|
1946
1946
|
return;
|
|
1947
1947
|
}
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1948
|
+
const summaryLines = detected.map((tool) => {
|
|
1949
|
+
const status = isConfigured(tool) ? `${pc.green("\u2713")} ${pc.dim("(already configured)")}` : pc.green("\u25CB");
|
|
1950
|
+
return ` ${tool.name.padEnd(16)} ${status} ${pc.dim(shortenPath(tool.configPath))}`;
|
|
1951
|
+
});
|
|
1952
|
+
p.note(summaryLines.join(`
|
|
1953
|
+
`), "Detected Tools");
|
|
1954
|
+
const configured = [];
|
|
1955
|
+
const failed = [];
|
|
1956
|
+
for (const tool of detected) {
|
|
1951
1957
|
try {
|
|
1952
1958
|
installMcp(tool);
|
|
1953
|
-
|
|
1959
|
+
configured.push(tool.name);
|
|
1960
|
+
p.log.success(`${tool.name} ${pc.dim(shortenPath(tool.configPath))}`);
|
|
1954
1961
|
} catch (e) {
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
});
|
|
1958
|
-
for (const result of results) {
|
|
1959
|
-
const path = shortenPath(result.tool.configPath);
|
|
1960
|
-
if (result.ok) {
|
|
1961
|
-
console.log(` \u2713 ${result.tool.name}`);
|
|
1962
|
-
console.log(` ${path}`);
|
|
1963
|
-
} else {
|
|
1964
|
-
console.log(` \u2717 ${result.tool.name} -- ${result.error}`);
|
|
1965
|
-
console.log(` ${path}`);
|
|
1962
|
+
failed.push(tool.name);
|
|
1963
|
+
p.log.error(`${tool.name} \u2014 ${e.message}`);
|
|
1966
1964
|
}
|
|
1967
1965
|
}
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1966
|
+
if (failed.length > 0) {
|
|
1967
|
+
p.log.warn(`${failed.length} tool${failed.length === 1 ? "" : "s"} failed: ${failed.join(", ")}`);
|
|
1968
|
+
}
|
|
1969
|
+
p.note([
|
|
1970
|
+
`${pc.bold("In Claude Code")}, just ask naturally:`,
|
|
1971
|
+
` ${pc.cyan('"Generate 3 stashes for a better hero section"')}`,
|
|
1972
|
+
"",
|
|
1973
|
+
`${pc.bold("Or use the CLI")} directly:`,
|
|
1974
|
+
` ${pc.cyan('stashes generate "make the hero bolder" --count 3')}`,
|
|
1975
|
+
` ${pc.cyan("stashes browse")} \u2014 open the web UI`
|
|
1976
|
+
].join(`
|
|
1977
|
+
`), "Getting Started");
|
|
1978
|
+
p.outro(`Stashes MCP registered in ${pc.bold(String(configured.length))} tool${configured.length === 1 ? "" : "s"}. Happy designing!`);
|
|
1972
1979
|
}
|
|
1973
|
-
function runRemove(tools) {
|
|
1980
|
+
async function runRemove(tools) {
|
|
1981
|
+
p.intro(pc.bgMagenta(pc.black(" stashes ")));
|
|
1974
1982
|
const configured = tools.filter((t) => {
|
|
1975
1983
|
try {
|
|
1976
1984
|
return t.detect() && isConfigured(t);
|
|
@@ -1978,40 +1986,47 @@ function runRemove(tools) {
|
|
|
1978
1986
|
return false;
|
|
1979
1987
|
}
|
|
1980
1988
|
});
|
|
1981
|
-
console.log("");
|
|
1982
|
-
console.log(" Stashes Remove");
|
|
1983
|
-
console.log(" " + "-".repeat(50));
|
|
1984
1989
|
if (configured.length === 0) {
|
|
1985
|
-
|
|
1986
|
-
|
|
1990
|
+
p.log.info("Stashes MCP is not configured in any detected tools.");
|
|
1991
|
+
p.outro("Nothing to remove.");
|
|
1992
|
+
return;
|
|
1993
|
+
}
|
|
1994
|
+
const shouldProceed = await p.confirm({
|
|
1995
|
+
message: `Remove Stashes from ${configured.length} tool${configured.length === 1 ? "" : "s"}?`
|
|
1996
|
+
});
|
|
1997
|
+
if (p.isCancel(shouldProceed) || !shouldProceed) {
|
|
1998
|
+
p.cancel("Removal cancelled.");
|
|
1987
1999
|
return;
|
|
1988
2000
|
}
|
|
2001
|
+
let removedCount = 0;
|
|
1989
2002
|
for (const tool of configured) {
|
|
1990
2003
|
try {
|
|
1991
2004
|
removeMcp(tool);
|
|
1992
|
-
|
|
2005
|
+
removedCount++;
|
|
2006
|
+
p.log.success(`Removed from ${tool.name}`);
|
|
1993
2007
|
} catch (e) {
|
|
1994
|
-
|
|
2008
|
+
p.log.error(`${tool.name} \u2014 ${e.message}`);
|
|
1995
2009
|
}
|
|
1996
2010
|
}
|
|
1997
|
-
|
|
1998
|
-
console.log(" Done.");
|
|
1999
|
-
console.log("");
|
|
2011
|
+
p.outro(`Stashes removed from ${pc.bold(String(removedCount))} tool${removedCount === 1 ? "" : "s"}.`);
|
|
2000
2012
|
}
|
|
2001
|
-
function setupCommand(options) {
|
|
2013
|
+
async function setupCommand(options) {
|
|
2002
2014
|
const tools = buildToolDefinitions();
|
|
2003
2015
|
if (options.status) {
|
|
2004
2016
|
showStatus(tools);
|
|
2005
2017
|
} else if (options.remove) {
|
|
2006
|
-
runRemove(tools);
|
|
2018
|
+
await runRemove(tools);
|
|
2007
2019
|
} else {
|
|
2008
|
-
runInstall(tools);
|
|
2020
|
+
await runInstall(tools);
|
|
2009
2021
|
}
|
|
2010
2022
|
}
|
|
2011
2023
|
|
|
2012
2024
|
// src/index.ts
|
|
2025
|
+
var selfDir = dirname4(fileURLToPath2(import.meta.url));
|
|
2026
|
+
var pkgPath = join11(selfDir, "..", "package.json");
|
|
2027
|
+
var version = JSON.parse(readFileSync8(pkgPath, "utf-8")).version;
|
|
2013
2028
|
var program = new Command;
|
|
2014
|
-
program.name("stashes").description("Generate AI-powered UI design explorations in your project").version("
|
|
2029
|
+
program.name("stashes").description("Generate AI-powered UI design explorations in your project").version(version, "-v, --version");
|
|
2015
2030
|
program.command("browse", { isDefault: true }).description("Start the Stashes server and open the web UI").argument("[path]", "Project directory", ".").option("-p, --port <port>", "Stashes server port", "4000").option("-d, --dev-port <port>", "Your app dev server port (auto-detected)").option("-n, --stashes <count>", "Default stash count", "3").option("--no-open", "Do not open the browser").action(startCommand);
|
|
2016
2031
|
program.command("generate").description("Generate stashes from a prompt (no web UI needed)").argument("<prompt>", "What UI changes to generate").option("-c, --count <count>", "Number of stashes (1-5)", "3").option("-f, --file <path>", "Scope to a specific file").option("-e, --export <name>", "Specific component export name").action(generateCommand);
|
|
2017
2032
|
program.command("list").description("List all stashes in the current project").action(listCommand);
|
package/dist/commands/setup.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setup.d.ts","sourceRoot":"","sources":["../../src/commands/setup.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"setup.d.ts","sourceRoot":"","sources":["../../src/commands/setup.ts"],"names":[],"mappings":"AA8RA,UAAU,YAAY;IACpB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,wBAAsB,YAAY,CAAC,OAAO,EAAE,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC,CAUvE"}
|
package/dist/commands/setup.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { existsSync, readFileSync, writeFileSync, mkdirSync } from 'node:fs';
|
|
2
2
|
import { dirname, join } from 'node:path';
|
|
3
3
|
import { homedir } from 'node:os';
|
|
4
|
+
import * as p from '@clack/prompts';
|
|
5
|
+
import pc from 'picocolors';
|
|
4
6
|
// ── Constants ───────────────────────────────────────────────────────────────────
|
|
5
7
|
const MCP_SERVER_NAME = 'stashes';
|
|
6
8
|
const MCP_ENTRY_STANDARD = {
|
|
@@ -125,66 +127,73 @@ function shortenPath(fullPath) {
|
|
|
125
127
|
}
|
|
126
128
|
// ── Command actions ─────────────────────────────────────────────────────────────
|
|
127
129
|
function showStatus(tools) {
|
|
130
|
+
p.intro(pc.bgMagenta(pc.black(' stashes ')));
|
|
128
131
|
const detected = tools.filter((t) => t.detect());
|
|
129
|
-
console.log('');
|
|
130
|
-
console.log(' Stashes MCP Status');
|
|
131
|
-
console.log(' ' + '-'.repeat(50));
|
|
132
132
|
if (detected.length === 0) {
|
|
133
|
-
|
|
134
|
-
|
|
133
|
+
p.log.warn('No supported AI tools detected on this system.');
|
|
134
|
+
p.outro('Nothing to show.');
|
|
135
135
|
return;
|
|
136
136
|
}
|
|
137
|
-
const
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
console.log(` - ${name} not set up ${path}`);
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
console.log('');
|
|
137
|
+
const lines = detected.map((tool) => {
|
|
138
|
+
const status = isConfigured(tool)
|
|
139
|
+
? pc.green('✓ Configured')
|
|
140
|
+
: pc.yellow('○ Not set up');
|
|
141
|
+
return ` ${tool.name.padEnd(16)} ${status} ${pc.dim(shortenPath(tool.configPath))}`;
|
|
142
|
+
});
|
|
143
|
+
p.note(lines.join('\n'), 'MCP Server Status');
|
|
144
|
+
p.outro(`${detected.length} tool${detected.length === 1 ? '' : 's'} detected.`);
|
|
149
145
|
}
|
|
150
|
-
function runInstall(tools) {
|
|
146
|
+
async function runInstall(tools) {
|
|
147
|
+
p.intro(pc.bgMagenta(pc.black(' stashes ')));
|
|
148
|
+
// Scan for tools
|
|
149
|
+
const s = p.spinner();
|
|
150
|
+
s.start('Scanning for AI tools...');
|
|
151
151
|
const detected = tools.filter((t) => t.detect());
|
|
152
|
-
|
|
153
|
-
console.log(' Stashes Setup');
|
|
154
|
-
console.log(' ' + '-'.repeat(50));
|
|
152
|
+
s.stop(`Found ${pc.bold(String(detected.length))} AI tool${detected.length === 1 ? '' : 's'}`);
|
|
155
153
|
if (detected.length === 0) {
|
|
156
|
-
|
|
157
|
-
|
|
154
|
+
p.log.warn('No supported AI tools detected on this system.');
|
|
155
|
+
p.outro('Nothing to configure.');
|
|
158
156
|
return;
|
|
159
157
|
}
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
158
|
+
// Show detected tools summary
|
|
159
|
+
const summaryLines = detected.map((tool) => {
|
|
160
|
+
const status = isConfigured(tool)
|
|
161
|
+
? `${pc.green('✓')} ${pc.dim('(already configured)')}`
|
|
162
|
+
: pc.green('○');
|
|
163
|
+
return ` ${tool.name.padEnd(16)} ${status} ${pc.dim(shortenPath(tool.configPath))}`;
|
|
164
|
+
});
|
|
165
|
+
p.note(summaryLines.join('\n'), 'Detected Tools');
|
|
166
|
+
// Configure each tool
|
|
167
|
+
const configured = [];
|
|
168
|
+
const failed = [];
|
|
169
|
+
for (const tool of detected) {
|
|
163
170
|
try {
|
|
164
171
|
installMcp(tool);
|
|
165
|
-
|
|
172
|
+
configured.push(tool.name);
|
|
173
|
+
p.log.success(`${tool.name} ${pc.dim(shortenPath(tool.configPath))}`);
|
|
166
174
|
}
|
|
167
175
|
catch (e) {
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
});
|
|
171
|
-
for (const result of results) {
|
|
172
|
-
const path = shortenPath(result.tool.configPath);
|
|
173
|
-
if (result.ok) {
|
|
174
|
-
console.log(` \u2713 ${result.tool.name}`);
|
|
175
|
-
console.log(` ${path}`);
|
|
176
|
-
}
|
|
177
|
-
else {
|
|
178
|
-
console.log(` \u2717 ${result.tool.name} -- ${result.error}`);
|
|
179
|
-
console.log(` ${path}`);
|
|
176
|
+
failed.push(tool.name);
|
|
177
|
+
p.log.error(`${tool.name} — ${e.message}`);
|
|
180
178
|
}
|
|
181
179
|
}
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
180
|
+
// Summary
|
|
181
|
+
if (failed.length > 0) {
|
|
182
|
+
p.log.warn(`${failed.length} tool${failed.length === 1 ? '' : 's'} failed: ${failed.join(', ')}`);
|
|
183
|
+
}
|
|
184
|
+
// Usage hint
|
|
185
|
+
p.note([
|
|
186
|
+
`${pc.bold('In Claude Code')}, just ask naturally:`,
|
|
187
|
+
` ${pc.cyan('"Generate 3 stashes for a better hero section"')}`,
|
|
188
|
+
'',
|
|
189
|
+
`${pc.bold('Or use the CLI')} directly:`,
|
|
190
|
+
` ${pc.cyan('stashes generate "make the hero bolder" --count 3')}`,
|
|
191
|
+
` ${pc.cyan('stashes browse')} — open the web UI`,
|
|
192
|
+
].join('\n'), 'Getting Started');
|
|
193
|
+
p.outro(`Stashes MCP registered in ${pc.bold(String(configured.length))} tool${configured.length === 1 ? '' : 's'}. Happy designing!`);
|
|
186
194
|
}
|
|
187
|
-
function runRemove(tools) {
|
|
195
|
+
async function runRemove(tools) {
|
|
196
|
+
p.intro(pc.bgMagenta(pc.black(' stashes ')));
|
|
188
197
|
const configured = tools.filter((t) => {
|
|
189
198
|
try {
|
|
190
199
|
return t.detect() && isConfigured(t);
|
|
@@ -193,37 +202,41 @@ function runRemove(tools) {
|
|
|
193
202
|
return false;
|
|
194
203
|
}
|
|
195
204
|
});
|
|
196
|
-
console.log('');
|
|
197
|
-
console.log(' Stashes Remove');
|
|
198
|
-
console.log(' ' + '-'.repeat(50));
|
|
199
205
|
if (configured.length === 0) {
|
|
200
|
-
|
|
201
|
-
|
|
206
|
+
p.log.info('Stashes MCP is not configured in any detected tools.');
|
|
207
|
+
p.outro('Nothing to remove.');
|
|
208
|
+
return;
|
|
209
|
+
}
|
|
210
|
+
const shouldProceed = await p.confirm({
|
|
211
|
+
message: `Remove Stashes from ${configured.length} tool${configured.length === 1 ? '' : 's'}?`,
|
|
212
|
+
});
|
|
213
|
+
if (p.isCancel(shouldProceed) || !shouldProceed) {
|
|
214
|
+
p.cancel('Removal cancelled.');
|
|
202
215
|
return;
|
|
203
216
|
}
|
|
217
|
+
let removedCount = 0;
|
|
204
218
|
for (const tool of configured) {
|
|
205
219
|
try {
|
|
206
220
|
removeMcp(tool);
|
|
207
|
-
|
|
221
|
+
removedCount++;
|
|
222
|
+
p.log.success(`Removed from ${tool.name}`);
|
|
208
223
|
}
|
|
209
224
|
catch (e) {
|
|
210
|
-
|
|
225
|
+
p.log.error(`${tool.name} — ${e.message}`);
|
|
211
226
|
}
|
|
212
227
|
}
|
|
213
|
-
|
|
214
|
-
console.log(' Done.');
|
|
215
|
-
console.log('');
|
|
228
|
+
p.outro(`Stashes removed from ${pc.bold(String(removedCount))} tool${removedCount === 1 ? '' : 's'}.`);
|
|
216
229
|
}
|
|
217
|
-
export function setupCommand(options) {
|
|
230
|
+
export async function setupCommand(options) {
|
|
218
231
|
const tools = buildToolDefinitions();
|
|
219
232
|
if (options.status) {
|
|
220
233
|
showStatus(tools);
|
|
221
234
|
}
|
|
222
235
|
else if (options.remove) {
|
|
223
|
-
runRemove(tools);
|
|
236
|
+
await runRemove(tools);
|
|
224
237
|
}
|
|
225
238
|
else {
|
|
226
|
-
runInstall(tools);
|
|
239
|
+
await runInstall(tools);
|
|
227
240
|
}
|
|
228
241
|
}
|
|
229
242
|
//# sourceMappingURL=setup.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setup.js","sourceRoot":"","sources":["../../src/commands/setup.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAC7E,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAC1C,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"setup.js","sourceRoot":"","sources":["../../src/commands/setup.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AACzD,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAEnD,MAAM,OAAO,GAAG,IAAI,OAAO,EAAE,CAAC;AAE9B,OAAO;KACJ,IAAI,CAAC,SAAS,CAAC;KACf,WAAW,CAAC,4DAA4D,CAAC;KACzE,OAAO,CAAC,OAAO,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stashes",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Generate AI-powered UI design explorations in your project",
|
|
6
6
|
"keywords": [
|
|
@@ -38,10 +38,12 @@
|
|
|
38
38
|
"typecheck": "tsc --noEmit"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
+
"@clack/prompts": "^1.0.1",
|
|
41
42
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
42
43
|
"commander": "^13.0.0",
|
|
43
44
|
"hono": "^4.7.0",
|
|
44
45
|
"open": "^10.1.0",
|
|
46
|
+
"picocolors": "^1.1.1",
|
|
45
47
|
"simple-git": "^3.27.0",
|
|
46
48
|
"zod": "^3.24.0"
|
|
47
49
|
},
|