-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.63 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
{
"name": "xe-mcp",
"version": "0.1.0",
"description": "MCP server for the Xe Currency Data API — real-time rates, historical data, and volatility analysis in Claude Code",
"main": "dist/index.js",
"bin": {
"xe-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"build:lambda": "tsc -p tsconfig.lambda.json",
"build:all": "npm run build && npm run build:lambda",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
}
},
"keywords": [
"mcp",
"xe",
"currency",
"fx",
"exchange-rate",
"claude",
"claude-code"
],
"license": "MIT",
"files": [
"dist",
"README.md",
".env.example",
".claude"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CedricConday/xe-mcp.git"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.1075.0",
"@aws-sdk/client-s3": "^3.1075.0",
"@aws-sdk/client-ses": "^3.1075.0",
"@aws-sdk/client-sqs": "^3.1075.0",
"@aws-sdk/util-dynamodb": "^3.996.5",
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/jest": "^30.0.0",
"@types/node": "^22.0.0",
"better-sqlite3": "^12.11.1",
"jest": "^30.4.2",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "^5.5.0"
},
"allowScripts": {
"better-sqlite3@12.11.1": true
}
}