-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.56 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.56 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
{
"name": "@beshkenadze/ecfr-sdk",
"version": "0.3.0",
"description": "TypeScript SDK and MCP server for the eCFR (Electronic Code of Federal Regulations) API",
"author": "Akira Beshkenadze",
"license": "MIT",
"keywords": [
"ecfr",
"federal",
"regulations",
"api",
"sdk",
"mcp",
"typescript"
],
"homepage": "https://github.com/beshkenadze/ecfr-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/beshkenadze/ecfr-sdk.git"
},
"bugs": {
"url": "https://github.com/beshkenadze/ecfr-sdk/issues"
},
"type": "module",
"module": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./mcp": {
"import": "./dist/mcp/index.js",
"types": "./dist/mcp/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun run build:clean && bun run build:js && bun run build:types",
"build:clean": "rm -rf dist",
"build:js": "bun build --target=node ./src/index.ts --outdir=dist --splitting",
"build:types": "tsc --emitDeclarationOnly --project tsconfig.build.json",
"generate": "bun run scripts/fix-and-convert-swagger.ts && orval",
"format": "biome format --write .",
"lint": "biome lint --write .",
"check": "biome check --write .",
"check:ci": "biome ci .",
"prepublishOnly": "bun run build",
"test": "bun test src",
"test:watch": "bun test --watch src",
"test:integration": "SKIP_INTEGRATION_TESTS=false bun test src",
"test:e2e": "SKIP_E2E_TESTS=false bun test tests/e2e",
"test:e2e:api": "SKIP_E2E_TESTS=false bun test tests/e2e/api.e2e.test.ts",
"test:e2e:mcp": "SKIP_E2E_TESTS=false bun test tests/e2e/mcp-server.e2e.test.ts",
"test:e2e:full": "SKIP_E2E_TESTS=false bun test tests/e2e/full-integration.e2e.test.ts",
"test:all": "bun test",
"mcp:server": "bun run src/mcp/server.ts",
"docker:build": "docker build -t ecfr-mcp-server .",
"docker:run": "docker run -i --rm ecfr-mcp-server"
},
"devDependencies": {
"@biomejs/biome": "^2.1.1",
"@types/bun": "latest",
"@types/node": "^24.0.14",
"orval": "^7.10.0",
"playwright": "^1.48.2",
"swagger2openapi": "^7.0.8",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.1",
"axios": "^1.10.0",
"zod": "^4.0.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}