-
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) · 975 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 975 Bytes
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": "@aredotna/mcp",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"generate": "tsx scripts/generate-tools.ts",
"build": "tsc",
"dev": "tsx src/transports/stdio.ts",
"dev:http": "wrangler dev src/transports/http.ts",
"deploy": "wrangler deploy",
"typecheck": "tsc --noEmit",
"test": "vitest run --exclude 'dist/**'",
"format": "prettier --write .",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js,json,md}": "prettier --write"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.0",
"hono": "^4.0.0",
"openapi-fetch": "^0.17.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.0.0",
"@types/node": "^22.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"openapi-typescript": "^7.13.0",
"prettier": "^3.8.1",
"tsx": "^4.0.0",
"typescript": "^5.7.0",
"vitest": "^4.1.0",
"wrangler": "^4.0.0"
}
}