clodds 1.2.2 → 1.2.3
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/package.json +2 -1
- package/public/webchat/css/app.css +1807 -0
- package/public/webchat/index.html +310 -0
- package/public/webchat/js/app.js +750 -0
- package/public/webchat/js/chat.js +467 -0
- package/public/webchat/js/commands.js +356 -0
- package/public/webchat/js/sidebar.js +1012 -0
- package/public/webchat/js/storage.js +20 -0
- package/public/webchat/js/ws.js +165 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clodds",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "Open-source AI trading terminal. Trade Polymarket, Kalshi, Betfair, Binance, Bybit, Hyperliquid, Solana DEXs from Telegram, Discord, Slack or web. Arbitrage detection, whale tracking, copy trading, perpetual futures up to 200x, DeFi swaps, MEV protection. Self-hosted, 118 skills, powered by Claude.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
},
|
|
62
62
|
"files": [
|
|
63
63
|
"dist",
|
|
64
|
+
"public",
|
|
64
65
|
"README.md",
|
|
65
66
|
"LICENSE"
|
|
66
67
|
],
|