-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 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
{
"name": "@indigoprotocol/cardano-mcp",
"version": "1.0.11",
"type": "module",
"description": "Cardano MCP server for handling wallet interactions",
"main": "dist/index.js",
"bin": {
"cardano-mcp": "dist/index.js"
},
"files": [
"dist",
"dist/*.wasm"
],
"scripts": {
"build": "bash scripts/build.sh",
"build:tsc": "tsc --project tsconfig.json",
"dev": "npm run build && npm run start",
"inspector": "npx @modelcontextprotocol/inspector",
"start": "node --no-warnings ./dist/index.js",
"smithery:build": "bash scripts/smithery-build.sh",
"smithery:publish": "bash scripts/smithery-build.sh && npx smithery mcp publish --name indigoprotocol/cardano-mcp --from-build .smithery/stdio"
},
"author": "Indigo Protocol",
"license": "MIT",
"mcpName": "io.github.IndigoProtocol/cardano-mcp",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@lucid-evolution/lucid": "^0.4.29",
"@modelcontextprotocol/sdk": "^1.18.0",
"@types/express": "^5.0.3",
"@types/node": "^24.3.1",
"axios": "^1.12.2",
"cors": "^2.8.5",
"dotenv": "^17.3.1",
"esbuild": "^0.27.4",
"express": "^5.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"winston-syslog": "^2.7.1",
"zod": "^3.25.76"
},
"dependencies": {
"libsodium-sumo": "^0.7.16",
"libsodium-wrappers-sumo": "^0.7.16",
"undici": "^7.0.0"
}
}