-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.78 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
{
"name": "federal-register-mcp",
"version": "0.1.0",
"description": "MCP server for syncing and querying Executive Orders via the Federal Register API",
"repository": {
"type": "git",
"url": "https://github.com/anblanco/FederalRegisterMCP.git"
},
"type": "module",
"main": "./dist/entry/start.js",
"types": "./dist/entry/start.d.ts",
"bin": {
"federal-register-mcp": "dist/entry/start.js",
"federal-register-sync": "dist/entry/cli.js",
"federal-register-stats": "dist/entry/stats.js"
},
"files": [
"dist/",
"data/.gitkeep"
],
"license": "MIT",
"engines": {
"node": ">=25.0.0"
},
"scripts": {
"start": "tsx src/entry/start.ts",
"sync": "tsx src/entry/cli.ts",
"sync:force": "tsx src/entry/cli.ts --force",
"stats": "tsx src/entry/stats.ts",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build && npm run test",
"typecheck": "tsc --noEmit",
"lint": "tsx scripts/lint-architecture.ts && tsx scripts/lint-suggestions.ts",
"test": "node --import tsx/esm --test tests/types.test.ts tests/adapters/db.test.ts tests/model.test.ts tests/tools.test.ts",
"test:api": "node --import tsx/esm --test tests/adapters/federal-register.test.ts",
"test:e2e": "node --import tsx/esm --test tests/entry/server.test.ts",
"test:scenarios": "node --import tsx/esm --test tests/entry/scenarios.test.ts",
"test:coverage": "node --import tsx/esm --experimental-test-coverage --test tests/types.test.ts tests/adapters/db.test.ts tests/model.test.ts tests/tools.test.ts tests/adapters/federal-register.test.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^25.3.3",
"tsx": "^4.0.0",
"typescript": "^5.7.0"
}
}