-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.26 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
{
"name": "okx-hub",
"private": true,
"version": "1.4.7",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm --filter @agent-tradekit/core build && pnpm --filter @okx_ai/okx-trade-mcp build && pnpm --filter @okx_ai/okx-trade-cli build",
"typecheck": "pnpm -r typecheck",
"clean": "pnpm -r clean",
"test:unit": "pnpm --filter @agent-tradekit/core test:unit && pnpm --filter @okx_ai/okx-trade-cli test:unit && pnpm --filter @okx_ai/okx-trade-mcp test:unit",
"test:coverage": "c8 --reporter=lcov --reporter=text --src=packages/core/src --src=packages/cli/src node_modules/.bin/tsx --test packages/core/test/*.test.ts packages/cli/test/*.test.ts packages/mcp/test/*.test.ts",
"test": "c8 --reporter=lcov --reporter=text --src=packages/core/src --src=packages/cli/src node_modules/.bin/tsx --test packages/core/test/*.test.ts packages/cli/test/*.test.ts packages/mcp/test/*.test.ts",
"pretest": "npm run build -w packages/core && npm run build -w packages/cli"
},
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"@types/node": "^25.2.2",
"c8": "^10.1.3",
"tsup": "^8.5.1",
"tsx": "^4.19.3",
"typescript": "^5.9.3"
}
}