@thinksoftai/cli 1.4.0 → 1.5.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/commands/frontend.d.ts +13 -0
- package/dist/commands/frontend.js +1038 -0
- package/dist/commands/frontend.js.map +1 -0
- package/dist/index.js +24 -7
- package/dist/index.js.map +1 -1
- package/dist/utils/aiContext.js +62 -44
- package/dist/utils/aiContext.js.map +1 -1
- package/dist/utils/api.d.ts +6 -0
- package/dist/utils/api.js +34 -0
- package/dist/utils/api.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Frontend command - Scaffold frontend projects for external AI tools
|
|
3
|
+
*
|
|
4
|
+
* Usage:
|
|
5
|
+
* thinksoft frontend --init # Scaffold new frontend
|
|
6
|
+
* thinksoft frontend --init --app ID # Scaffold for specific app
|
|
7
|
+
*/
|
|
8
|
+
interface FrontendOptions {
|
|
9
|
+
init?: boolean;
|
|
10
|
+
app?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare function frontend(options: FrontendOptions): Promise<void>;
|
|
13
|
+
export {};
|