-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.07 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.07 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
72
73
74
75
76
77
{
"name": "@indigoprotocol/indigo-mcp",
"version": "0.2.14",
"type": "module",
"description": "MCP server for Indigo Protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"indigo-mcp": "dist/index.js",
"indigo-mcp-setup": "dist/cli/setup.js"
},
"files": [
"dist",
"dist/*.wasm"
],
"keywords": [
"mcp",
"indigo",
"cardano",
"defi",
"ai-agent"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "bash scripts/build.sh",
"build:tsc": "tsc --project tsconfig.build.json",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write \"src/**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"smithery:build": "bash scripts/smithery-build.sh",
"smithery:publish": "bash scripts/smithery-build.sh && npx smithery mcp publish --name indigoprotocol/indigo-mcp --from-build .smithery/stdio"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/IndigoProtocol/indigo-mcp"
},
"author": "Indigo Protocol",
"license": "MIT",
"mcpName": "io.github.IndigoProtocol/indigo-mcp",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@indigoprotocol/indigo-sdk": "^1.0.6",
"@lucid-evolution/lucid": "^0.4.29",
"@modelcontextprotocol/sdk": "^1.18.0",
"@qbtlabs/x402": "^0.5.0",
"@types/node": "^24.3.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"axios": "^1.12.2",
"bech32": "^2.0.0",
"dotenv": "^17.3.1",
"esbuild": "^0.27.3",
"eslint": "^9.0.0",
"patch-package": "^8.0.1",
"prettier": "^3.0.0",
"tsx": "^4.0.0",
"typescript": "^5.9.2",
"vitest": "^4.0.18",
"zod": "^3.25.76"
},
"dependencies": {
"libsodium-sumo": "^0.7.16",
"libsodium-wrappers-sumo": "^0.7.16",
"undici": "^7.24.5"
}
}