-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 897 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 897 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": "ramen-api",
"version": "0.0.1",
"main": "src/index.ts",
"type": "module",
"scripts": {
"test": "vitest",
"validate": "vitest run --config vitest.validation.config.ts",
"dev": "wrangler dev",
"deploy": "wrangler deploy --minify",
"tail": "wrangler tail",
"cf-typegen": "wrangler types"
},
"license": "MIT",
"dependencies": {
"@hono/graphql-server": "^0.4.1",
"@hono/mcp": "^0.1.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"graphql": "^16.6.0",
"hono": "^4.7.11",
"zod": "^3.25.7"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.8.36",
"@hono/eslint-config": "^0.0.3",
"@types/node": "^22.15.30",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"vitest": "~3.1.0",
"wrangler": "^4.19.1"
},
"engines": {
"node": ">=18"
},
"resolutions": {
"graphql": "^16.6.0"
}
}