We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 02cadc3 + ecc0b83 commit fc506d3Copy full SHA for fc506d3
src/cli/utils/validate-project.ts
@@ -1,17 +1,16 @@
1
+
2
import { readFile } from "fs/promises";
3
import { findUp } from 'find-up';
4
5
6
export async function validateMCPProject() {
7
try {
8
const packageJsonPath = await findUp('package.json');
9
10
if (!packageJsonPath) {
11
throw new Error("Could not find package.json in current directory or any parent directories");
12
}
-
- const packageJsonContent = await readFile(packageJsonPath, 'utf-8');
13
- const package_json = JSON.parse(packageJsonContent);
14
+ const package_json = JSON.parse(await readFile(packageJsonPath, "utf-8"));
15
if (
16
!package_json.dependencies?.["mcp-framework"] &&
17
!package_json.devDependencies?.["mcp-framework"]
0 commit comments