Skip to content

Commit 467bb3b

Browse files
committed
Fixed package.json
1 parent 373e2d0 commit 467bb3b

1 file changed

Lines changed: 44 additions & 56 deletions

File tree

packages/mcp-server/package.json

Lines changed: 44 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,46 @@
11
{
2-
"name": "@sei-js/mcp-server",
3-
"description": "Model Context Protocol (MCP) server for interacting with EVM-compatible networks",
4-
"type": "module",
5-
"version": "0.1.0",
6-
"bin": "./bin/cli.js",
7-
"main": "./dist/esm/index.js",
8-
"module": "./dist/esm/index.js",
9-
"files": [
10-
"dist/",
11-
"bin/",
12-
"README.md",
13-
"LICENSE"
14-
],
15-
"scripts": {
16-
"build": "rimraf dist && tsc --outDir dist/esm --module esnext",
17-
"test": "NODE_ENV=test jest"
18-
},
19-
"devDependencies": {
20-
"@types/cors": "^2.8.17",
21-
"@types/express": "^5.0.0"
22-
},
23-
"dependencies": {
24-
"@modelcontextprotocol/sdk": "^1.7.0",
25-
"cors": "^2.8.5",
26-
"dotenv": "^16.5.0",
27-
"express": "^4.21.2",
28-
"viem": "^2.23.9",
29-
"zod": "^3.24.2"
30-
},
31-
"keywords": [
32-
"mcp",
33-
"model-context-protocol",
34-
"evm",
35-
"blockchain",
36-
"sei",
37-
"web3",
38-
"smart-contracts",
39-
"ai",
40-
"agent"
41-
],
42-
"author": "Etheral <etheral.eth.dev@gmail.com>",
43-
"license": "MIT",
44-
"engines": {
45-
"node": ">=18.0.0"
46-
},
47-
"repository": {
48-
"type": "git",
49-
"url": "https://github.com/sei-protocol/sei-mcp-server"
50-
},
51-
"bugs": {
52-
"url": "https://github.com/sei-protocol/sei-mcp-server/issues"
53-
},
54-
"homepage": "https://github.com/sei-protocol/sei-mcp-server#readme",
55-
"publishConfig": {
56-
"access": "public"
57-
}
2+
"name": "@sei-js/mcp-server",
3+
"description": "Model Context Protocol (MCP) server for interacting with EVM-compatible networks",
4+
"type": "module",
5+
"version": "0.1.0",
6+
"bin": "./bin/cli.js",
7+
"main": "./dist/esm/index.js",
8+
"module": "./dist/esm/index.js",
9+
"files": ["dist/", "bin/", "README.md", "LICENSE"],
10+
"scripts": {
11+
"build": "rm -rf dist && tsc --outDir dist/esm --module esnext",
12+
"start": "node dist/esm/index.js",
13+
"dev": "tsx src/index.ts",
14+
"test": "jest"
15+
},
16+
"devDependencies": {
17+
"@types/cors": "^2.8.17",
18+
"@types/express": "^5.0.0",
19+
"typescript": "^5.8.3"
20+
},
21+
"dependencies": {
22+
"@modelcontextprotocol/sdk": "^1.7.0",
23+
"cors": "^2.8.5",
24+
"dotenv": "^16.5.0",
25+
"express": "^4.21.2",
26+
"viem": "^2.30.5",
27+
"zod": "^3.24.2"
28+
},
29+
"keywords": ["mcp", "model-context-protocol", "evm", "blockchain", "sei", "web3", "smart-contracts", "ai", "agent"],
30+
"author": "Etheral <etheral.eth.dev@gmail.com>",
31+
"license": "MIT",
32+
"engines": {
33+
"node": ">=18.0.0"
34+
},
35+
"repository": {
36+
"type": "git",
37+
"url": "https://github.com/sei-protocol/sei-mcp-server"
38+
},
39+
"bugs": {
40+
"url": "https://github.com/sei-protocol/sei-mcp-server/issues"
41+
},
42+
"homepage": "https://github.com/sei-protocol/sei-mcp-server#readme",
43+
"publishConfig": {
44+
"access": "public"
45+
}
5846
}

0 commit comments

Comments
 (0)