mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-28 03:07:53 +00:00
78737b6835
- Update `.gitignore` to include `lab/` for backtesting and raw data. - Refactor `app.py` to improve error handling and logging. - Remove deprecated files: `core/bot_logic.py`, `core/bots/base_bot.py`, `core/bots/manager.py`, `core/db/database.py`, `core/routes/api_analysis.py`, `core/routes/api_bots_analysis.py`, `core/strategies/logic_ma.py`, `core/strategies/logic_rsi.py`. - Modify multiple files to enhance bot management, routing, and strategy handling. - Update JavaScript and HTML templates for better UI and functionality.
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "@eslint/core",
|
|
"version": "0.15.1",
|
|
"description": "Runtime-agnostic core of ESLint",
|
|
"type": "module",
|
|
"types": "./dist/esm/types.d.ts",
|
|
"exports": {
|
|
"types": {
|
|
"import": "./dist/esm/types.d.ts",
|
|
"require": "./dist/cjs/types.d.cts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build:cts": "node -e \"fs.cpSync('dist/esm/types.d.ts', 'dist/cjs/types.d.cts')\"",
|
|
"build": "tsc && npm run build:cts",
|
|
"test:jsr": "npx jsr@latest publish --dry-run",
|
|
"test:types": "tsc -p tests/types/tsconfig.json"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/eslint/rewrite.git",
|
|
"directory": "packages/core"
|
|
},
|
|
"keywords": [
|
|
"eslint",
|
|
"core"
|
|
],
|
|
"author": "Nicholas C. Zakas",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/eslint/rewrite/issues"
|
|
},
|
|
"homepage": "https://github.com/eslint/rewrite/tree/main/packages/core#readme",
|
|
"dependencies": {
|
|
"@types/json-schema": "^7.0.15"
|
|
},
|
|
"devDependencies": {
|
|
"json-schema": "^0.4.0"
|
|
},
|
|
"engines": {
|
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
}
|
|
}
|