-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 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": "@pagopa/dx-mcpserver",
"version": "0.2.0",
"type": "module",
"description": "An MCP server that supports developers using DX tools.",
"repository": {
"type": "git",
"url": "git+https://github.com/pagopa/dx.git",
"directory": "apps/mcpserver"
},
"keywords": [
"DX",
"MCP"
],
"files": [
"dist"
],
"bin": {
"dx": "./dist/cli.js"
},
"dependencies": {
"@aws-sdk/client-bedrock-agent-runtime": "^3.583.0",
"@aws-sdk/client-s3": "catalog:aws",
"@aws-sdk/s3-request-presigner": "^3.583.0",
"@logtape/logtape": "catalog:",
"@modelcontextprotocol/sdk": "catalog:",
"@octokit/rest": "^22.0.1",
"@pagopa/azure-tracing": "workspace:^",
"@pagopa/dx-mcpprompts": "workspace:^",
"axios": "^1.13.6",
"zod": "^3.25.76"
},
"devDependencies": {
"@pagopa/eslint-config": "workspace:^",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"eslint": "catalog:",
"prettier": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"scripts": {
"start": "tsx src/cli.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"version": "node ./scripts/generate-server-manifest.js"
}
}