-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.35 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.35 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "agentdeals",
"version": "0.3.1",
"description": "MCP server aggregating developer tool deals, free tiers, and startup programs",
"type": "module",
"main": "dist/index.js",
"bin": {
"agentdeals": "dist/index.js"
},
"keywords": [
"mcp",
"developer-tools",
"deals",
"free-tier",
"startup-programs",
"model-context-protocol"
],
"repository": {
"type": "git",
"url": "https://github.com/robhunter/agentdeals"
},
"license": "MIT",
"author": "Rob Hunter",
"mcpName": "io.github.robhunter/agentdeals",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build && npm test",
"build": "tsc",
"start": "node dist/index.js",
"serve": "node dist/serve.js",
"dev": "ts-node src/index.ts",
"test": "node --test --test-concurrency 1 test/**/*.test.ts",
"mutate:1479": "node scripts/mutate-1479.mjs",
"mutate:1481": "node scripts/mutate-1481.mjs",
"mutate:1434": "node scripts/mutate-1434.mjs",
"mutate:1486": "node scripts/mutate-1486.mjs",
"mutate:1486-round2": "node scripts/mutate-1486-round2.mjs",
"mutate:1556": "node scripts/mutate-1556.mjs",
"test:gated": "node --test --test-concurrency 1 --test-reporter=spec --test-reporter-destination=stdout --test-reporter=./scripts/reporters/failing-tests.js --test-reporter-destination=$GATE_FAILING_TESTS test/**/*.test.ts",
"floors": "node scripts/report-population-floors.js",
"ratchet:budgets": "node scripts/ratchet-quality-budgets.js --lower",
"lastmod:pages": "node scripts/update-page-lastmod.js",
"lint": "tsc --noEmit",
"check:staleness": "node scripts/check-staleness.js",
"check:liveness": "node scripts/check-liveness.js",
"lint:duplicates": "node scripts/lint-duplicates.js",
"lint:shared-pages": "node scripts/lint-shared-pages.js",
"check:pricing": "node scripts/check-pricing-changes.js",
"check:change-log": "node scripts/check-change-log-staleness.js",
"monitor:pricing": "node scripts/monitor-pricing.js",
"ingest:free-for-dev": "node scripts/parse-free-for-dev.ts",
"ingest:startup-deals": "node scripts/ingest-startup-deals.ts",
"recategorize": "node scripts/recategorize.ts",
"reverify": "node scripts/reverify.js",
"reverify:rolling": "node scripts/reverify-rolling.js",
"verify-freshness": "node scripts/verify-freshness.js",
"validate": "node scripts/validate-data.ts",
"test:referral-pipeline": "npm run build && node scripts/test-referral-pipeline.ts",
"build:mcpb": "npm run build && npx @anthropic-ai/mcpb pack .",
"queue:curated-alternatives": "node scripts/curated-alternatives-queue.js",
"mutate:1335": "node scripts/mutate-1335.mjs",
"mutate:1327": "node scripts/mutate-1327.mjs",
"mutate:1497": "node scripts/mutate-1497.mjs",
"report:budgets": "node scripts/report-quality-budgets.js",
"generate:llm-readme": "node scripts/generate-llm-api-readme.js",
"mutate:1560": "node scripts/mutate-1560.mjs"
},
"dependencies": {
"@modelcontextprotocol/ext-apps": "^1.5.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"swagger-ui-dist": "^5.32.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@anthropic-ai/mcpb": "^2.1.2",
"@types/node": "^22.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.7.0"
},
"overrides": {
"tmp": "^0.2.7"
},
"engines": {
"node": ">=20.0.0"
}
}