leek-box-cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +213 -0
- package/dist/cli.mjs +161 -0
- package/package.json +69 -0
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "leek-box-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "韭菜盒子, 终端股票自选股看板, 基于 Ink 构建的交互式 CLI 工具",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"a股",
|
|
7
|
+
"cli",
|
|
8
|
+
"ink",
|
|
9
|
+
"quote",
|
|
10
|
+
"stock",
|
|
11
|
+
"tui",
|
|
12
|
+
"韭菜盒子"
|
|
13
|
+
],
|
|
14
|
+
"homepage": "https://github.com/zhixiangyao/leek-box-cli#readme",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/zhixiangyao/leek-box-cli/issues"
|
|
17
|
+
},
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"author": "zhixiangyao",
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/zhixiangyao/leek-box-cli.git"
|
|
23
|
+
},
|
|
24
|
+
"bin": {
|
|
25
|
+
"leek-box-cli": "dist/cli.mjs"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist/cli.mjs"
|
|
29
|
+
],
|
|
30
|
+
"type": "module",
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "vite build",
|
|
36
|
+
"dev": "tsx src/cli.tsx",
|
|
37
|
+
"mock": "tsx scripts/mock.ts",
|
|
38
|
+
"preview": "node dist/cli.mjs",
|
|
39
|
+
"test": "vitest run --reporter=verbose",
|
|
40
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
41
|
+
"fmt": "oxfmt",
|
|
42
|
+
"fmt:check": "oxfmt --check",
|
|
43
|
+
"lint": "oxlint --fix",
|
|
44
|
+
"lint:check": "oxlint"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"ink": "7.1.1",
|
|
48
|
+
"meow": "14.1.0",
|
|
49
|
+
"react": "19.2.8",
|
|
50
|
+
"react-devtools-core": "7.0.1",
|
|
51
|
+
"string-width": "8.2.2",
|
|
52
|
+
"zustand": "5.0.15"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@types/node": "^22.20.0",
|
|
56
|
+
"@types/react": "19.2.18",
|
|
57
|
+
"oxfmt": "0.65.0",
|
|
58
|
+
"oxlint": "1.80.0",
|
|
59
|
+
"tsx": "4.23.12",
|
|
60
|
+
"typescript": "7.0.2",
|
|
61
|
+
"vite": "8.2.2",
|
|
62
|
+
"vitest": "4.1.11"
|
|
63
|
+
},
|
|
64
|
+
"engines": {
|
|
65
|
+
"node": "^22.19.0 || >=24.0.0",
|
|
66
|
+
"pnpm": ">=11.0.0"
|
|
67
|
+
},
|
|
68
|
+
"packageManager": "pnpm@12.0.0"
|
|
69
|
+
}
|