mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-28 19:27:44 +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.
112 lines
2.9 KiB
JSON
112 lines
2.9 KiB
JSON
{
|
|
"name": "@eslint/json",
|
|
"version": "0.13.1",
|
|
"description": "JSON linting plugin for ESLint",
|
|
"author": "Nicholas C. Zakas",
|
|
"type": "module",
|
|
"main": "dist/esm/index.js",
|
|
"types": "dist/esm/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"require": {
|
|
"types": "./dist/cjs/index.d.cts",
|
|
"default": "./dist/cjs/index.cjs"
|
|
},
|
|
"import": {
|
|
"types": "./dist/esm/index.d.ts",
|
|
"default": "./dist/esm/index.js"
|
|
}
|
|
},
|
|
"./types": {
|
|
"require": {
|
|
"types": "./dist/cjs/types.cts"
|
|
},
|
|
"import": {
|
|
"types": "./dist/esm/types.d.ts"
|
|
}
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"gitHooks": {
|
|
"pre-commit": "lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
],
|
|
"!(*.js)": "prettier --write --ignore-unknown",
|
|
"README.md": [
|
|
"npm run build:update-rules-docs"
|
|
],
|
|
"{src/rules/*.js,tools/update-rules-docs.js}": [
|
|
"npm run build:update-rules-docs",
|
|
"git add README.md"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/eslint/json.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/eslint/json/issues"
|
|
},
|
|
"homepage": "https://github.com/eslint/json#readme",
|
|
"scripts": {
|
|
"build:dedupe-types": "node tools/dedupe-types.js dist/cjs/index.cjs dist/esm/index.js",
|
|
"build:cts": "node tools/build-cts.js",
|
|
"build:rules": "node tools/build-rules.js",
|
|
"build": "npm run build:rules && rollup -c && npm run build:dedupe-types && tsc -p tsconfig.esm.json && npm run build:cts",
|
|
"build:readme": "node tools/update-readme.js",
|
|
"build:update-rules-docs": "node tools/update-rules-docs.js",
|
|
"prepare": "npm run build",
|
|
"pretest": "npm run build",
|
|
"lint": "eslint",
|
|
"fmt": "prettier --write .",
|
|
"fmt:check": "prettier --check .",
|
|
"test": "mocha tests/**/*.js",
|
|
"test:jsr": "npx jsr@latest publish --dry-run",
|
|
"test:coverage": "c8 npm test",
|
|
"test:types": "tsc -p tests/types/tsconfig.json"
|
|
},
|
|
"keywords": [
|
|
"eslint",
|
|
"eslint-plugin",
|
|
"eslintplugin",
|
|
"json",
|
|
"linting"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@eslint/core": "^0.15.1",
|
|
"@eslint/plugin-kit": "^0.3.4",
|
|
"@humanwhocodes/momoa": "^3.3.8",
|
|
"natural-compare": "^1.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"c8": "^10.1.3",
|
|
"dedent": "^1.5.3",
|
|
"eslint": "^9.31.0",
|
|
"eslint-config-eslint": "^11.0.0",
|
|
"eslint-plugin-eslint-plugin": "^6.3.2",
|
|
"got": "^14.4.2",
|
|
"lint-staged": "^15.2.7",
|
|
"mdast-util-from-markdown": "^2.0.2",
|
|
"mocha": "^11.3.0",
|
|
"prettier": "^3.4.1",
|
|
"rollup": "^4.41.0",
|
|
"rollup-plugin-copy": "^3.5.0",
|
|
"rollup-plugin-delete": "^3.0.1",
|
|
"typescript": "^5.8.3",
|
|
"yorkie": "^2.0.0"
|
|
},
|
|
"engines": {
|
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
}
|
|
}
|