-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.2 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
{
"name": "companies-house-mcp-server",
"version": "3.1.0",
"description": "MCP server for Companies House API integration",
"main": "dist/index.js",
"type": "module",
"bin": {
"companies-house-mcp-server": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"companies-house",
"api",
"typescript"
],
"author": {
"name": "Stefano Amorelli",
"email": "stefano@amorelli.tech",
"url": "https://amorelli.tech"
},
"license": "AGPL-3.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.5.5",
"@vitest/coverage-v8": "^2.1.1",
"eslint": "^9.11.1",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.39.1",
"vite": "^5.4.8",
"vitest": "^2.1.1"
}
}