-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.25 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
{
"name": "snowball-cli",
"version": "0.3.1",
"description": "Xueqiu (雪球) stock data CLI for AI agents — quotes, klines, financials, KOL sentiment, live news, and more",
"main": "dist/index.js",
"module": "index.ts",
"type": "module",
"keywords": [
"xueqiu",
"snowball",
"雪球",
"stock",
"finance",
"china-market",
"a-shares",
"hong-kong",
"fund",
"kline",
"kol",
"cli",
"ai-agent",
"agent-skill",
"json-api",
"market-data",
"financial-data",
"capital-flow",
"sentiment"
],
"author": "baixianger",
"license": "MIT",
"homepage": "https://www.npmjs.com/package/snowball-cli",
"repository": {
"type": "git",
"url": "https://github.com/baixianger/snowball-cli.git"
},
"bugs": {
"url": "https://github.com/baixianger/snowball-cli/issues"
},
"bin": {
"snowball": "cli.js"
},
"scripts": {
"build": "bun build index.ts --outdir dist --target node"
},
"files": [
"dist/",
"cli.js",
"index.ts",
"cli.ts",
"lib/",
"SKILL.md",
"README.md",
"README.zh-CN.md"
],
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"qrcode": "^1.5.4"
}
}