Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
218 changes: 143 additions & 75 deletions README.md

Large diffs are not rendered by default.

24 changes: 16 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@
"type": "module",
"scripts": {
"dev": "tsx watch src/main.ts",
"dev:ui": "pnpm --filter open-alice-ui dev",
"predev": "turbo run build --filter=@traderalice/opentypebb --filter=@traderalice/ibkr",
"build": "turbo run build && tsup src/main.ts --format esm --dts",
"dev:ui": "corepack pnpm --filter open-alice-ui dev",
"dev:codex": "powershell -ExecutionPolicy Bypass -File ./scripts/start-openalice.ps1",
"build:deps": "corepack pnpm --filter @traderalice/opentypebb build && corepack pnpm --filter @traderalice/ibkr build",
"build:ui": "corepack pnpm --filter open-alice-ui build",
"build:server": "tsup src/main.ts --format esm --dts",
"predev": "corepack pnpm build:deps",
"build": "corepack pnpm build:deps && corepack pnpm build:ui && corepack pnpm build:server",
"start": "node dist/main.js",
"test": "vitest run",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
Expand Down Expand Up @@ -36,8 +40,8 @@
"@alpacahq/alpaca-trade-api": "^3.1.3",
"@anthropic-ai/claude-agent-sdk": "^0.2.72",
"@grammyjs/auto-retry": "^2.0.2",
"@hono/node-server": "^1.19.11",
"@modelcontextprotocol/sdk": "^1.27.1",
"@hono/node-server": "^1.19.14",
"@modelcontextprotocol/sdk": "^1.29.0",
"@sinclair/typebox": "0.34.48",
"@traderalice/ibkr": "workspace:*",
"@traderalice/opentypebb": "workspace:*",
Expand All @@ -49,7 +53,7 @@
"express": "^5.2.1",
"file-type": "^21.3.2",
"grammy": "^1.40.0",
"hono": "^4.12.7",
"hono": "^4.12.14",
"json5": "^2.2.3",
"openai": "^6.33.0",
"pino": "^10.3.1",
Expand All @@ -62,8 +66,12 @@
},
"pnpm": {
"overrides": {
"@alpacahq/alpaca-trade-api>axios": "^0.30.3",
"@alpacahq/alpaca-trade-api>eslint": "-"
"@alpacahq/alpaca-trade-api>axios": "^1.15.0",
"@alpacahq/alpaca-trade-api>eslint": "-",
"follow-redirects": "^1.16.0",
"@alpacahq/alpaca-trade-api>lodash": "^4.18.1",
"@modelcontextprotocol/sdk>express-rate-limit": "^8.3.2",
"path-to-regexp": "^8.4.2"
}
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/ibkr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"directory": "packages/ibkr"
},
"scripts": {
"build": "rm -rf dist && tsc",
"build": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\" && tsc",
"test": "vitest run --config vitest.config.ts",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:all": "vitest run --config vitest.config.ts && vitest run --config vitest.e2e.config.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/opentypebb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hono/node-server": "^1.13.8",
"hono": "^4.12.7",
"@hono/node-server": "^1.19.14",
"hono": "^4.12.14",
"undici": "^7.24.4",
"yahoo-finance2": "^3.13.1",
"zod": "^3.24.2"
Expand Down
107 changes: 56 additions & 51 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions scripts/start-openalice.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@echo off
powershell -ExecutionPolicy Bypass -File "%~dp0start-openalice.ps1" %*
Loading