-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.91 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.91 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
{
"name": "@nirholas/sperax-mcp",
"version": "0.0.1",
"mcpName": "io.github.nirholas/sperax-crypto-mcp",
"description": "A MCP server for SperaxOS that supports Arbitrum One with USDs, SPA, Demeter, and other popular EVM-compatible networks.",
"scripts": {
"start": "node dist/index.js",
"start:sse": "npm run start --sse",
"dev:sse": "bun run --watch src/index.ts --sse",
"dev": "bun run --watch src/index.ts",
"build": "bun build src/*.ts --outdir dist --target node --format cjs",
"test": "npx @modelcontextprotocol/inspector bun dev",
"e2e": "LOGLEVEL=debug bun test e2e --coverage --timeout 50000",
"prepare": "husky",
"format": "prettier --write ."
},
"main": "dist/index.js",
"bin": {
"speraxos": "./dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"author": {
"name": "nich",
"url": "https://x.com/nichxbt"
},
"repository": {
"type": "git",
"url": "https://github.com/nirholas/sperax-crypto-mcp"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"@nirholas/universal-crypto-mcp": "github:nirholas/universal-crypto-mcp",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.18.2",
"mime": "^4.0.7",
"reflect-metadata": "^0.2.2",
"viem": "^2.27.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@types/bun": "^1.2.12",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.0.0",
"husky": "^9.1.7",
"prettier": "3.2.4",
"typescript": "^5.0.0"
},
"license": "MIT",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"always",
[
"sentence-case"
]
]
}
}
}