-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.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
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": "@orderly.network/mcp-server",
"version": "1.4.2",
"mcpName": "io.github.OrderlyNetwork/orderly-mcp",
"repository": {
"type": "git",
"url": "https://github.com/OrderlyNetwork/orderly-mcp.git"
},
"description": "MCP Server for Orderly Network - Documentation and SDK patterns",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "node scripts/build.js",
"build:types": "tsc --declaration --emitDeclarationOnly",
"dev": "node scripts/build.js --watch",
"start": "node dist/index.js",
"start:http": "node dist/http-server.js",
"prepare": "yarn build",
"prepublishOnly": "yarn typecheck && yarn lint && yarn test:run && yarn build",
"lint": "eslint src --ext .ts,.tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\"",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"update:free": "node scripts/generate_api_from_openapi.js && node scripts/generate_indexer_api.js && node scripts/generate_sv_api.js && node scripts/generate_contracts.js && node scripts/generate_orderly_one_api.js && node scripts/generate_sdk_symbols.js && yarn build && yarn test:run"
},
"keywords": [
"orderly",
"orderly-network",
"mcp",
"mcp-server",
"defi",
"trading"
],
"author": "Orderly Network",
"license": "MIT",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"commander": "^12.0.0",
"deepmerge": "^4.3.1",
"execa": "^9.0.0",
"express": "^4.18.2",
"fs-extra": "^11.2.0",
"fuse.js": "^7.1.0",
"kleur": "^4.1.5",
"prompts": "^2.4.2",
"yaml": "^2.8.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.0.0",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"JSONStream": "^1.3.5",
"dotenv": "^17.2.3",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"lint-staged": "^16.2.7",
"openai": "^6.17.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^3.0.0"
},
"bin": {
"orderly-mcp": "dist/cli/index.js",
"orderly-mcp-server": "dist/cli/index.js",
"orderly-network-mcp-server": "dist/cli/index.js"
},
"engines": {
"node": ">=24.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}