This repository was archived by the owner on Jul 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.89 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
{
"name": "bitbank-lab-cli",
"version": "0.1.6",
"description": "Experimental CLI & Agent Skills starter kit for bitbank — botters lab community edition. Market data, paper trading, account read, and Private API trading with safety guards.",
"type": "module",
"bin": {
"bitbank": "bin/bitbank"
},
"files": [
"agents/",
"bin/",
"cli/*.ts",
"cli/commands/",
"cli/completion/",
"cli/watch/",
"skills/",
"AGENTS.md",
"CLAUDE.md",
"CONTEXT.md",
"LICENSE",
"llms.txt",
"README.md"
],
"scripts": {
"cli": "tsx cli/index.ts",
"cli:env": "tsx --env-file=.env cli/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check cli/",
"lint:fix": "biome check --fix cli/",
"format": "biome format --write cli/",
"typecheck": "tsc --noEmit",
"version": "node scripts/sync-version.mjs && tsx scripts/gen-agents-catalog.ts && git add .claude-plugin/plugin.json .cursor-plugin/plugin.json .codex-plugin/plugin.json gemini-extension.json plugin.json agents/tool-catalog.json agents/error-catalog.json"
},
"dependencies": {
"pubnub": "^12.0.0",
"socket.io-client": "^4.8.3",
"tsx": "^4.19.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.1",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^4.1.8",
"lefthook": "2.1.9",
"typescript": "^5.7.0",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=22"
},
"homepage": "https://github.com/bitbankinc/bitbank-lab-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/tjackiet/bitbank-lab-cli.git"
},
"bugs": {
"url": "https://github.com/bitbankinc/bitbank-lab-cli/issues"
},
"keywords": [
"bitbank",
"cryptocurrency",
"trading",
"agent-skills",
"cli",
"paper-trading"
],
"publishConfig": {
"access": "public"
},
"license": "MIT"
}