-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) 路 1.03 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) 路 1.03 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
39
40
{
"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.3.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"hono": "^4.12.23",
"jszip": "^3.10.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.30.1",
"@cloudflare/workers-types": "^4.20260605.1",
"@typescript/native-preview": "7.0.0-dev.20260604.1",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2",
"wrangler": "^4.98.0"
},
"pnpm": {
"overrides": {
"path-to-regexp@>=8.0.0 <8.4.0": "8.4.0",
"qs@<6.15.2": "6.15.2"
}
}
}