-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.63 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
{
"name": "@bitget-ai/bitget-agent-cli",
"version": "3.0.0",
"packageManager": "pnpm@8.14.1",
"description": "bgc — the official Bitget shell CLI for the Unified Trading Account (UTA / v3) API. Drive market data, trading, positions, account, funds, loans and tax from your terminal or a shell-based AI assistant (Claude Code, Codex CLI, OpenClaw) via intent verbs, with built-in discover/raw introspection and dryRun/confirm write-safety.",
"type": "module",
"license": "MIT",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"bgc": "./lib/index.js"
},
"files": [
"lib",
"CHANGELOG.md",
"README.md",
"LICENSE",
"VERSION"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "pnpm run typecheck && pnpm run build && pnpm run test"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"bitget",
"bitget-api",
"bitget-cli",
"bgc",
"uta",
"unified-trading-account",
"trading",
"crypto",
"cryptocurrency",
"exchange",
"spot",
"futures",
"cli",
"ai-agent",
"claude-code",
"codex",
"openclaw"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@bitget-ai/bitget-agent-sdk": "^3.0.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^2.0.0"
}
}