-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 4.82 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 4.82 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
{
"name": "dexbot2",
"version": "0.6.0",
"description": "A sophisticated market making bot for the BitShares Decentralized Exchange (DEX), implementing optimized staggered order strategies for automated trading.",
"main": "modules/chain_orders.js",
"bin": {
"dexbot": "./dexbot.js",
"bot": "./bot.js"
},
"scripts": {
"pm2:unlock-start": "node pm2",
"pm2:claw-only": "node pm2 claw-only",
"unlock:start": "node unlock-start",
"claw:start": "node unlock-start --claw-only",
"pm2:start": "pm2 start profiles/ecosystem.config.js",
"pm2:stop": "pm2 stop profiles/ecosystem.config.js",
"pm2:reload": "pm2 reload profiles/ecosystem.config.js",
"pmain": "bash scripts/pmain.sh",
"pdev": "bash scripts/pdev.sh",
"ptest": "bash scripts/ptest.sh",
"lp:chart": "node scripts/generate_lp_chart.js",
"lp:chart:echarts": "node scripts/generate_lp_chart_echarts.js",
"lp:chart:uplot": "node scripts/generate_lp_chart_uplot.js",
"ama:chart:synthetic": "node analysis/ama_fitting/generate_unified_comparison_chart.js",
"ama:chart:synthetic:echarts": "node analysis/ama_fitting/generate_unified_comparison_chart_echarts.js",
"ama:chart:synthetic:uplot": "node analysis/ama_fitting/generate_unified_comparison_chart_uplot.js",
"analysis:derivatives:uplot": "node analysis/analyze_derivatives_uplot.js",
"analysis:derivatives:echarts": "node analysis/derivative_chart_generator_echarts.js",
"test": "node tests/test_utils.js && node tests/test_order_grid.js && node tests/test_logger.js && node tests/test_manager.js && node tests/test_account_totals.js && node tests/connection_test.js && node tests/test_key_validation.js && node tests/test_subscriptions.js && node tests/test_btsdex_event_patch.js && node tests/test_fills.js && node tests/test_account_selection.js && node tests/test_autoderive.js && node tests/test_price_derive.js && node tests/test_price_no_positional.js && node tests/test_price_orientation.js && node tests/test_price_tolerance.js && node tests/test_chain_helpers.js && node tests/test_unanchored_spread_correction.js && node tests/test_spread_redistribution_fallback.js && node tests/test_ghost_order_fix.js && node tests/test_startup_decision.js && node tests/test_partial_order_edge_cases.js && node tests/test_integration_partial_complex.js && node tests/test_precision_quantization.js && node tests/test_precision_integration.js && node tests/test_dust_rebalance_logic.js && node tests/test_bts_fee_accounting.js && node tests/test_multifill_opposite_partial.js && node tests/test_accounting_logic.js && node tests/test_strategy_logic.js && node tests/test_sync_logic.js && node tests/test_grid_logic.js && node tests/test_manager_logic.js && node tests/test_bts_fee_logic.js && node tests/test_boundary_sync_logic.js && node tests/test_fee_backwards_compat.js && node tests/test_layer2_self_healing.js && node tests/test_working_grid.js && node tests/test_cow_commit_guards.js && node tests/test_cow_master_plan.js && node tests/test_legacy_cow_projection.js && node tests/test_account_bots_draft.js && node tests/test_ama_center_snapshot.js && node tests/test_lp_chart_strategy_loader.js && node tests/test_fill_replay_guards.js && node tests/repro_phantom_orders.js && node tests/test_bot_settings.js && node tests/test_launcher_exports.js && node tests/test_unlock_start_main.js && node tests/test_bot_daemon_ready_output.js && node tests/test_bot_daemon_probe_fallback.js && node tests/test_dexbot_daemon_ready_output.js && node tests/test_credential_runtime.js && node tests/test_credential_session_cache.js && node tests/test_credential_controller_cleanup.js && node tests/test_credential_daemon.js && node tests/test_pm2_logic.js && node tests/test_pm2_startup_order.js && node claw/tests/test_claw_regressions.js && node claw/tests/test_claw_state_store.js && node claw/tests/test_dynamic_weight_service.js && node claw/tests/test_dexbot_profiles.js && node claw/tests/test_position_manager_watch_health.js && node claw/tests/test_claw_bridge.js && node claw/tests/test_short_mpa_strategy.js && node claw/tests/test_position_health.js && node claw/tests/test_claw_chain_layer.js && node claw/tests/test_claw_domain_logic.js && node claw/tests/test_claw_catalog_and_credentials.js && node claw/tests/test_claw_data_flow.js && node claw/tests/test_position_manager.js && node claw/tests/test_claw_skill_generation.js && node claw/tests/test_claw_manifest_and_matrix.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/froooze/DEXBot2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/froooze/DEXBot2/issues"
},
"homepage": "https://github.com/froooze/DEXBot2#readme",
"dependencies": {
"bs58check": "^4.0.0",
"btsdex": "^0.7.11",
"readline-sync": "^1.4.10"
},
"devDependencies": {
}
}