-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.72 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": "tempguru-mcp",
"version": "1.2.0",
"private": true,
"description": "TempGuru MCP server: plan_staffing planner, six read-only event-staffing lookups incl. the Rate Index benchmark, plus an opt-in request_quote submission, for AI agents across 345 US/CA markets.",
"scripts": {
"dev": "next dev",
"build": "npm run build:okf && next build",
"build:stdio": "node scripts/sync-rates.mjs --check && esbuild src/mcp-stdio.ts --bundle --platform=node --format=esm --outfile=dist/mcp-stdio.mjs --packages=external",
"build:cli": "rm -rf cli/skills cli/index.mjs cli/LICENSE && esbuild src/mcp-stdio.ts --bundle --platform=node --format=esm --outfile=cli/index.mjs --banner:js='#!/usr/bin/env node' && mkdir -p cli/skills && cp content/skills/event-staffing-ordering.md content/skills/event-staffing-compliance.md cli/skills/ && cp LICENSE cli/LICENSE",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"evals": "node evals/run-evals.mjs",
"build:okf": "node scripts/dump-openapi.mjs && node scripts/build-okf.mjs",
"build:worker": "node scripts/build-edge-worker.mjs",
"sync-rates": "node scripts/sync-rates.mjs",
"check-rates": "node scripts/sync-rates.mjs --check",
"check:submissions": "node scripts/check-submissions.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"@upstash/redis": "^1.38.0",
"mcp-handler": "^1.1.0",
"next": "16.2.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"esbuild": "^0.25.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=22"
}
}