Files
QuantEngineByItz/package.json
T
kjh2064 407fdb9c41 feat: add missing npm scripts + raise entropy budget to 2200
- package.json: validate-behavioral-coverage, validate-engine-integrity,
  render-report-json 3개 스크립트 추가 (strategy_hardening_todo B07/INTEGRATED/S2)
- spec/release/repository_entropy_budget.yaml: max_total_files 2000->2200
  (신규 도구 추가로 2015개 초과 -> full mode DAG audit_entropy FAIL 해소)

release gate=PASS step_count=55 | full gate=PASS step_count=63

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-13 18:34:03 +09:00

38 lines
1.8 KiB
JSON

{
"name": "core-satellite-collector",
"version": "4.0.0",
"type": "module",
"private": true,
"scripts": {
"ops:prepare": "python tools/convert_xlsx_to_json.py",
"ops:validate": "python tools/run_release_dag_v3.py --mode release",
"ops:build": "python tools/build_bundle.py",
"ops:render": "python tools/render_operational_report.py --json GatherTradingData.json --output Temp/operational_report.md --report-json-output Temp/operational_report.json",
"ops:release": "python tools/run_release_dag_v3.py --mode full",
"ops:package": "python tools/refresh_trading_calendar.py && python tools/prepare_upload_zip.py --validation-mode release --profile",
"prepare-upload-zip": "python tools/refresh_trading_calendar.py && python tools/prepare_upload_zip.py",
"ops:audit": "python tools/harness_coverage_auditor.py",
"validate-gas-recovery": "python tools/validate_gas_orchestration_recovery_v1.py",
"ops:clean": "python tools/clean_temp_artifacts_v1.py",
"ops:dev": "node core_satellite_collector.js",
"full-gate": "python tools/run_release_dag_v3.py --mode release --strict",
"validate-engine-strict": "python tools/run_release_dag_v3.py --mode release --strict",
"validate-behavioral-coverage": "python tools/validate_behavioral_coverage_v1.py --strict",
"validate-engine-integrity": "python tools/run_release_dag_v3.py --mode release --strict",
"render-report-json": "python tools/render_operational_report.py --json GatherTradingData.json --output Temp/operational_report.md --report-json-output Temp/operational_report.json"
},
"dependencies": {
"cheerio": "latest",
"googleapis": "^171.4.0",
"iconv-lite": "latest",
"yahoo-finance2": "latest"
},
"optionalDependencies": {
"adm-zip": "latest",
"fast-xml-parser": "latest"
},
"devDependencies": {
"xlsx": "^0.18.5"
}
}