-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.27 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "mcp-codegen",
"version": "0.0.6-beta",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=es2015 --outfile=dist/index.js --format=cjs --external:reflect-metadata --external:zod --external:zod-to-json-schema --external:@modelcontextprotocol/sdk",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"build:all": "npm run build && npm run build:types",
"dev": "esbuild src/index.ts --bundle --platform=node --target=es2015 --outfile=dist/index.js --format=cjs --external:reflect-metadata --external:zod --external:zod-to-json-schema --external:@modelcontextprotocol/sdk --watch",
"prepublishOnly": "npm run build:all"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.17.1",
"@types/express": "^5.0.3",
"esbuild": "^0.20.2",
"express": "^5.1.0",
"install": "^0.13.0",
"npm": "^11.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.24.1"
},
"peerDependencies": {
"@modelcontextprotocol/sdk": "^1.17.1",
"zod": "^3.23.8"
},
"dependencies": {
"reflect-metadata": "^0.2.2"
}
}