-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 935 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 935 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
{
"name": "pera1",
"version": "2.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "vite dev",
"dev:wrangler": "wrangler dev",
"build": "vite build",
"deploy": "vite build && wrangler deploy",
"deploy:workers": "wrangler deploy --minify",
"typecheck": "tsc --noEmit",
"typecheck:native": "node node_modules/@typescript/native-preview/bin/tsgo.js --noEmit",
"tail": "wrangler tail",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@hono/mcp": "^0.1.1",
"@modelcontextprotocol/sdk": "^1.17.4",
"hono": "^4.7.5",
"jszip": "^3.10.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.30.1",
"@cloudflare/workers-types": "^4.20250405.0",
"@typescript/native-preview": "7.0.0-dev.20260326.1",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2",
"wrangler": "^4.7.2"
}
}