-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.69 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@tickward/mcp",
"version": "0.1.0",
"private": true,
"description": "OAuth MCP server for the tickward public API.",
"license": "AGPL-3.0-only",
"type": "module",
"files": [
"dist",
"CHANGELOG.md",
"LICENSE",
"README.md",
"wrangler.jsonc"
],
"engines": {
"node": ">=22.23.1 <23"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "22.23.1",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"version": ">=10.9.3 <11",
"onFail": "error"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check": "npm run check:node && npm run format:check && npm run typecheck && npm run test && npm run worker:dry-run",
"check:node": "node scripts/check-node-version.mjs",
"dev": "wrangler dev --local --port 8787",
"format": "biome check --write .",
"format:check": "biome check .",
"security:dependencies": "npm audit --audit-level=high",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"worker:deploy": "wrangler deploy",
"worker:dry-run": "wrangler deploy --dry-run --outdir /tmp/tickward-mcp-worker",
"worker:types": "wrangler types src/worker-configuration.d.ts"
},
"dependencies": {
"@cloudflare/workers-oauth-provider": "0.7.2",
"@modelcontextprotocol/sdk": "1.30.0",
"agents": "0.20.1",
"hono": "4.13.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@cloudflare/workers-types": "5.20260804.1",
"@types/node": "^22.18.11",
"@vitest/coverage-v8": "4.1.8",
"typescript": "^5.9.3",
"vitest": "^4.1.7",
"wrangler": "4.118.0"
},
"overrides": {
"undici": "7.29.0"
}
}