-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 4.06 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 4.06 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@sun-protocol/sun-mcp-server",
"version": "1.2.2",
"description": "An MCP server for the SUN.IO (SUNSWAP) ecosystem",
"engines": {
"node": ">=20 <25"
},
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./cli": {
"types": "./dist/cli.d.ts",
"require": "./dist/cli.js",
"default": "./dist/cli.js"
},
"./package.json": "./package.json"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.build.json",
"start": "node dist/cli.js",
"dev": "nodemon --watch src --ext ts --exec ts-node src/cli.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docs:tools": "node scripts/generate-tool-catalog.cjs",
"docs:check": "node scripts/generate-tool-catalog.cjs --check",
"test": "jest",
"test:integration": "jest --testMatch='**/test/integration/**/*.test.ts'",
"test:package": "npm run build && node scripts/verify-package.cjs",
"script:test-add-liquidity": "ts-node scripts/test-add-liquidity.ts",
"script:test-remove-liquidity": "ts-node scripts/test-remove-liquidity.ts",
"script:test-v3-mint": "ts-node scripts/test-v3-mint.ts",
"script:test-v3-increase": "ts-node scripts/test-v3-increase.ts",
"script:test-v3-decrease": "ts-node scripts/test-v3-decrease.ts",
"script:test-v3-collect": "ts-node scripts/test-v3-collect.ts",
"script:test-v4-mint": "ts-node scripts/test-v4-mint.ts",
"script:test-v4-increase": "ts-node scripts/test-v4-increase.ts",
"script:test-v4-decrease": "ts-node scripts/test-v4-decrease.ts",
"script:test-v4-collect": "ts-node scripts/test-v4-collect.ts",
"script:test-sunpump-buy": "ts-node scripts/test-sunpump-buy.ts",
"script:test-sunpump-sell": "ts-node scripts/test-sunpump-sell.ts",
"script:test-sunpump-swap": "ts-node scripts/test-sunpump-swap.ts",
"script:test-openapi": "ts-node scripts/test-openapi.ts",
"test:v4": "jest --testPathPattern=positionsV4",
"test:sunpump": "jest --testPathPattern=sunpump",
"wallet:setup": "ts-node scripts/setup-env-wallet.ts",
"wallet:generate": "ts-node scripts/setup-env-wallet.ts generate",
"wallet:show": "ts-node scripts/setup-env-wallet.ts show",
"prepublishOnly": "npm run build",
"publish:beta": "npm publish --tag beta --access public",
"publish:latest": "npm publish --access public"
},
"bin": {
"sun-mcp-server": "./bin/sun-mcp-server"
},
"files": [
"dist/**/*",
"bin/sun-mcp-server",
"config.example.json",
"config.json",
"specs/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"openapi",
"mcp",
"model-context-protocol",
"generator",
"typescript"
],
"author": "SUN Protocol",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.0.0",
"@types/node-fetch": "^2.6.12",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.8.1",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.0.0",
"typescript-eslint": "^8.56.1"
},
"dependencies": {
"@sun-protocol/sun-kit": "^1.2.0",
"@apidevtools/swagger-parser": "^10.1.0",
"@bankofai/agent-wallet": "^2.3.0",
"@modelcontextprotocol/sdk": "^1.10.2",
"@scure/bip32": "^2.0.1",
"@scure/bip39": "^2.0.1",
"@types/json-schema": "^7.0.15",
"axios": "^1.6.7",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.5",
"js-yaml": "^4.1.0",
"jsonpath-plus": "^10.4.0",
"minimatch": "^9.0.3",
"node-fetch": "^2.7.0",
"openapi-types": "^12.1.3",
"tronweb": "^6.2.1",
"yargs": "^17.7.2",
"zod": "^3.22.4"
}
}