Skip to content

Commit 51f7d16

Browse files
authored
fix: package.json by remove trailing comma (modelcontextprotocol#163)
1 parent a849854 commit 51f7d16

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

quickstart/client.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ Update your `package.json` to set `type: "module"` and a build script:
461461
{
462462
"type": "module",
463463
"scripts": {
464-
"build": "tsc && chmod 755 build/index.js",
464+
"build": "tsc && chmod 755 build/index.js"
465465
}
466466
}
467467
```

quickstart/server.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ Update your package.json to add type: "module" and a build script:
386386
"weather": "./build/index.js"
387387
},
388388
"scripts": {
389-
"build": "tsc && chmod 755 build/index.js",
389+
"build": "tsc && chmod 755 build/index.js"
390390
},
391391
"files": [
392392
"build"

0 commit comments

Comments
 (0)