-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.97 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.97 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
{
"name": "@data-fair/mcp",
"version": "0.6.1",
"description": "A Model Context Protocol server for the Data Fair ecosystem",
"type": "module",
"main": "index.ts",
"scripts": {
"build-image": "docker build -t mcp-dev .",
"build-types": "df-build-types .",
"dev-deps": "docker compose up -d --wait",
"dev-http": "DEBUG=datasets-tools TRANSPORT=http node --watch index.ts",
"dev-stdio": "DEBUG=datasets-tools TRANSPORT=stdio node --watch index.ts",
"dev-inspector": "npx @modelcontextprotocol/inspector --config dev/resources/inspector.json",
"dev-zellij": "zellij --layout .zellij.kdl",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"prepare": "husky || true",
"check-types": "tsc",
"test": "NODE_ENV=test node --test --test-force-exit 'src/**/*.test.ts'",
"test:coverage": "NODE_ENV=test node --test --test-force-exit --experimental-test-coverage 'src/**/*.test.ts'",
"quality": "npm run lint && npm run build-types && npm run check-types && npm run test"
},
"author": "Alban Mouton <alban.mouton@gmail.com>",
"license": "AGPL-3.0-only",
"imports": {
"#config": "./src/config.ts"
},
"engines": {
"node": "v24"
},
"dependencies": {
"@data-fair/agent-tools-data-fair": "^0.3.0",
"@data-fair/lib-express": "^1.20.5",
"@data-fair/lib-node": "^2.8.2",
"@data-fair/lib-types-builder": "^1.8.2",
"@modelcontextprotocol/sdk": "^1.17.1",
"config": "^3.3.12",
"csv-stringify": "^6.7.0",
"debug": "^4.4.1",
"express": "^5.1.0",
"http-terminator": "^3.2.0",
"limiter": "^3.0.0",
"prom-client": "^15.1.3",
"zod": "^3.24.2"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@modelcontextprotocol/inspector": "^0.16.2",
"@types/config": "^3.3.5",
"@types/debug": "^4.1.12",
"eslint": "^9.32.0",
"husky": "^9.1.7",
"neostandard": "^0.12.0",
"nock": "^14.0.11",
"typescript": "^5.8.3"
}
}