Skip to content

Commit 0ade3dc

Browse files
committed
feat: add typescript dependencies
1 parent 080703e commit 0ade3dc

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mcp-framework",
3-
"version": "0.1.10",
3+
"version": "0.1.11",
44
"description": "Framework for building Model Context Protocol (MCP) servers in Typescript",
55
"type": "module",
66
"author": "Alex Andru <[email protected]>",
@@ -16,13 +16,14 @@
1616
"dist"
1717
],
1818
"bin": {
19-
"mcp": "./dist/cli/index.js",
20-
"mcp-build": "./dist/cli/framework/build.js"
19+
"mcp": "dist/cli/index.js",
20+
"mcp-build": "dist/cli/framework/build.js"
2121
},
2222
"scripts": {
23-
"build": "node ./dist/cli/framework/build.js",
23+
"build": "tsc",
24+
"postbuild": "node ./dist/cli/framework/build.js",
2425
"watch": "tsc --watch",
25-
"prepare": "tsc && node ./dist/cli/framework/build.js"
26+
"prepare": "npm run build"
2627
},
2728
"keywords": [
2829
"mcp",
@@ -39,14 +40,14 @@
3940
"@types/prompts": "^2.4.9",
4041
"commander": "^12.1.0",
4142
"prompts": "^2.4.2",
43+
"typescript": "^5.3.3",
4244
"zod": "^3.23.8"
4345
},
4446
"devDependencies": {
4547
"@modelcontextprotocol/sdk": "^0.6.0",
4648
"@types/jest": "^29.5.12",
4749
"@types/node": "^20.11.24",
4850
"jest": "^29.7.0",
49-
"ts-jest": "^29.1.2",
50-
"typescript": "^5.3.3"
51+
"ts-jest": "^29.1.2"
5152
}
5253
}

0 commit comments

Comments
 (0)