-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.11 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
{
"name": "plot-mcp-worker",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"check": "tsc --noEmit",
"test:smoke": "node scripts/smoke.mjs",
"probe:force-analysis": "node scripts/local-force-analysis-probe.mjs",
"check:force-drift": "node scripts/force-analysis-drift-check.mjs",
"check:force-struct": "node scripts/force-analysis-struct-diff.mjs",
"check:force-compact": "node scripts/force-analysis-compact-diagnose.mjs",
"check:bundle-fingerprint": "node scripts/deploy-bundle-fingerprint.mjs",
"check:force-verify": "node scripts/force-analysis-verify.mjs",
"check:deploy-preflight": "node scripts/deploy-preflight.mjs",
"check:deploy-and-verify": "node scripts/deploy-and-verify.mjs",
"check:remote-health": "node scripts/remote-health.mjs"
},
"dependencies": {
"@resvg/resvg-wasm": "^2.6.2",
"expr-eval": "^2.0.2",
"opentype.js": "^1.3.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260418.0",
"typescript": "^5.8.3",
"wrangler": "^4.81.0"
}
}