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.
@@ -42,10 +42,5 @@
42
42
  "@types/react-dom": "^19.2.3",
43
43
  "tsx": "^4.21.0",
44
44
  "typescript": "^5.9.3"
45
- },
46
- "pnpm": {
47
- "overrides": {
48
- "lodash": ">=4.18.0"
49
- }
50
45
  }
51
- }
46
+ }
@@ -0,0 +1,2 @@
1
+ overrides:
2
+ lodash: ">=4.18.0"
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
- export type ProjectInfo = {
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
@@ -1 +1 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,gBAAgB,aAyB3B,CAAC;AAEH,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,MAAM,MAAM,WAAW,GAAG;IACxB,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"}
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.12",
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": "rm -rf dist tsconfig.tsbuildinfo",
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",