create-mcp-use-app 0.14.12 → 0.14.13
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/utils.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
export declare const SAFE_DIR_ENTRIES: Set<string>;
|
|
2
1
|
export declare function isSafeEntry(name: string): boolean;
|
|
3
2
|
export declare function findUnsafeEntries(dir: string): string[];
|
|
4
3
|
export declare function sanitizePackageName(raw: string): string;
|
|
5
|
-
|
|
4
|
+
type ProjectInfo = {
|
|
6
5
|
useCurrentDir: boolean;
|
|
7
6
|
projectPath: string;
|
|
8
7
|
displayName: string;
|
|
@@ -11,4 +10,5 @@ export type ProjectInfo = {
|
|
|
11
10
|
export declare function deriveProjectInfo(rawName: string, cwd: string): ProjectInfo;
|
|
12
11
|
export declare function updatePackageJson(projectPath: string, projectName: string): void;
|
|
13
12
|
export declare function updateIndexTs(projectPath: string, projectName: string): void;
|
|
13
|
+
export {};
|
|
14
14
|
//# sourceMappingURL=utils.d.ts.map
|
package/dist/utils.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AAoCA,wBAAgB,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAEjD;AAID,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,CAIvD;AAKD,wBAAgB,mBAAmB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAQvD;AAMD,KAAK,WAAW,GAAG;IACjB,aAAa,EAAE,OAAO,CAAC;IACvB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,WAAW,CAiB3E;AAED,wBAAgB,iBAAiB,CAAC,WAAW,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,QAQzE;AAED,wBAAgB,aAAa,CAAC,WAAW,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,QAUrE"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-mcp-use-app",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Create MCP-Use apps with one command",
|
|
6
6
|
"author": "mcp-use, Inc.",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"scripts": {
|
|
55
55
|
"build": "npm run clean && tsup src/index.tsx --format esm && tsc --emitDeclarationOnly --declaration && npm run copy-templates",
|
|
56
|
-
"clean": "
|
|
56
|
+
"clean": "rimraf dist tsconfig.tsbuildinfo",
|
|
57
57
|
"copy-templates": "node scripts/copy-templates.js",
|
|
58
58
|
"dev": "tsc --build --watch",
|
|
59
59
|
"test": "vitest --run --passWithNoTests",
|