@neovate/code 0.12.6 → 0.13.0
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.mjs +705 -700
- package/dist/index.d.ts +3 -2
- package/dist/index.mjs +705 -700
- package/dist/mcps/chrome-devtools-mcp.mjs +667 -0
- package/package.json +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -151,6 +151,7 @@ declare type Config = {
|
|
|
151
151
|
outputStyle?: string;
|
|
152
152
|
outputFormat?: 'text' | 'stream-json' | 'json';
|
|
153
153
|
autoUpdate?: boolean;
|
|
154
|
+
browser?: boolean;
|
|
154
155
|
};
|
|
155
156
|
|
|
156
157
|
export declare class _ConfigManager {
|
|
@@ -618,14 +619,14 @@ declare const TodoItemSchema: _zod.ZodObject<{
|
|
|
618
619
|
status: _zod.ZodEnum<["pending", "in_progress", "completed"]>;
|
|
619
620
|
priority: _zod.ZodEnum<["low", "medium", "high"]>;
|
|
620
621
|
}, "strip", _zod.ZodTypeAny, {
|
|
622
|
+
status: "in_progress" | "completed" | "pending";
|
|
621
623
|
id: string;
|
|
622
624
|
content: string;
|
|
623
|
-
status: "in_progress" | "completed" | "pending";
|
|
624
625
|
priority: "low" | "medium" | "high";
|
|
625
626
|
}, {
|
|
627
|
+
status: "in_progress" | "completed" | "pending";
|
|
626
628
|
id: string;
|
|
627
629
|
content: string;
|
|
628
|
-
status: "in_progress" | "completed" | "pending";
|
|
629
630
|
priority: "low" | "medium" | "high";
|
|
630
631
|
}>;
|
|
631
632
|
|