This repository was archived by the owner on Feb 24, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.16 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.16 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@covalenthq/goldrush-mcp-server",
"version": "0.0.4",
"description": "GoldRush MCP Server for interacting with Covalent GoldRush API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"bin": {
"goldrush-mcp-server": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"blockchain",
"cryptocurrency",
"web3",
"nft",
"tokens",
"erc20",
"blockchain-data",
"ai-agents",
"mcp",
"mcp-server",
"modelcontextprotocol",
"autonomous-agents"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:stdio": "node dist/index.js --transport stdio",
"start:http": "node dist/index.js --transport http",
"lint": "eslint .",
"prepublishOnly": "npm run clean && npm run build",
"clean": "rimraf dist",
"pretty": "prettier . --write",
"example": "node dist/example-client.js",
"test": "vitest",
"test:allchains": "vitest test/AllChainsService.test.ts",
"test:balances": "vitest test/BalanceService.test.ts",
"test:base": "vitest test/BaseService.test.ts",
"test:transactions": "vitest test/TransactionService.test.ts",
"test:bitcoin": "vitest test/BitcoinService.test.ts",
"test:nft": "vitest test/NftService.test.ts",
"test:pricing": "vitest test/PricingService.test.ts",
"test:security": "vitest test/SecurityService.test.ts",
"test:resources": "vitest test/Resources.test.ts"
},
"publishConfig": {
"access": "public"
},
"author": "covalenthq",
"homepage": "https://goldrush.dev/docs/",
"repository": {
"type": "git",
"url": "https://github.com/covalenthq/goldrush-mcp-server.git"
},
"bugs": {
"url": "https://github.com/covalenthq/goldrush-mcp-server/issues"
},
"license": "MIT",
"dependencies": {
"@covalenthq/client-sdk": "^2.3.7",
"@modelcontextprotocol/sdk": "^1.26.0",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"hono": "4.11.7",
"zod": "^4.2.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.27.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/express": "^5.0.2",
"@types/node": "^25.0.2",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"graphqurl": "^1.0.3",
"eslint-plugin-prettier": "^5.4.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vitest": "^4.0.15"
},
"packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48"
}