@trading-boy/cli 2.0.0 → 2.0.1
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 +22 -0
- package/README.md +17 -10
- package/dist/cli.bundle.js +718 -354
- package/package.json +11 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trading-boy/cli",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Trading Boy CLI — remote trading intelligence for traders and AI agents.",
|
|
5
5
|
"homepage": "https://cabal.ventures",
|
|
6
6
|
"repository": {
|
|
@@ -50,14 +50,6 @@
|
|
|
50
50
|
"README.md",
|
|
51
51
|
"!dist/**/*.map"
|
|
52
52
|
],
|
|
53
|
-
"scripts": {
|
|
54
|
-
"build": "tsc && node esbuild.config.js",
|
|
55
|
-
"typecheck": "tsc --noEmit",
|
|
56
|
-
"test": "vitest run",
|
|
57
|
-
"lint": "eslint src/",
|
|
58
|
-
"clean": "rm -rf dist .turbo",
|
|
59
|
-
"prepublishOnly": "node prepublish-check.js"
|
|
60
|
-
},
|
|
61
53
|
"dependencies": {
|
|
62
54
|
"@inquirer/prompts": "~7.10.1",
|
|
63
55
|
"@napi-rs/keyring": "~1.1.3",
|
|
@@ -68,8 +60,15 @@
|
|
|
68
60
|
"qrcode-terminal": "~0.12.0"
|
|
69
61
|
},
|
|
70
62
|
"devDependencies": {
|
|
71
|
-
"@trading-boy/core": "workspace:*",
|
|
72
63
|
"esbuild": "~0.27.7",
|
|
73
|
-
"typescript": "^5.7.0"
|
|
64
|
+
"typescript": "^5.7.0",
|
|
65
|
+
"@trading-boy/core": "1.3.0"
|
|
66
|
+
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"build": "tsc && node esbuild.config.js",
|
|
69
|
+
"typecheck": "tsc -b --pretty false",
|
|
70
|
+
"test": "vitest run",
|
|
71
|
+
"lint": "eslint src/",
|
|
72
|
+
"clean": "rm -rf dist .turbo"
|
|
74
73
|
}
|
|
75
|
-
}
|
|
74
|
+
}
|