mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-28 11:17:44 +00:00
aa984c4909
- 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.
75 lines
2.1 KiB
JSON
75 lines
2.1 KiB
JSON
{
|
|
"name": "@humanwhocodes/momoa",
|
|
"version": "3.3.9",
|
|
"description": "JSON AST parser, tokenizer, printer, traverser.",
|
|
"author": "Nicholas C. Zakas",
|
|
"type": "module",
|
|
"main": "dist/momoa.cjs",
|
|
"module": "dist/momoa.js",
|
|
"types": "dist/momoa.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"require": {
|
|
"types": "./dist/momoa.d.cts",
|
|
"default": "./dist/momoa.cjs"
|
|
},
|
|
"import": {
|
|
"types": "./dist/momoa.d.ts",
|
|
"default": "./dist/momoa.js"
|
|
}
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/humanwhocodes/momoa.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/humanwhocodes/momoa/issues"
|
|
},
|
|
"homepage": "https://github.com/humanwhocodes/momoa#readme",
|
|
"scripts": {
|
|
"build": "rollup -c && npm run fixup && tsc -p tsconfig.build.json && npm run copy-dts && npm run build-dcts",
|
|
"copy-dts": "node -e \"fs.copyFileSync('dist/momoa.d.ts', 'dist/momoa.d.cts')\"",
|
|
"build-dcts": "node tools/update-cts-references.js",
|
|
"fixup": "node tools/strip-typedef-aliases.js",
|
|
"lint": "eslint *.js src/*.js tests/*.js",
|
|
"perf": "npm run build && node tools/perf.js",
|
|
"regen": "npm run build && node tools/regenerate-test-data.js",
|
|
"prepare": "npm run build",
|
|
"pretest": "npm run build",
|
|
"test": "mocha tests/*.test.js && npm run test:types",
|
|
"test:types": "tsc --noEmit --project tests/types/tsconfig.json",
|
|
"test:attw": "attw --pack"
|
|
},
|
|
"keywords": [
|
|
"json",
|
|
"ast",
|
|
"json tree",
|
|
"abstract syntax tree"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"devDependencies": {
|
|
"@arethetypeswrong/cli": "^0.17.4",
|
|
"beautify-benchmark": "0.2.4",
|
|
"benchmark": "2.1.4",
|
|
"chai": "^4.3.7",
|
|
"eslint": "8.57.1",
|
|
"esm": "3.2.25",
|
|
"json-to-ast": "2.1.0",
|
|
"json5": "^2.2.3",
|
|
"mocha": "^11.0.0",
|
|
"npm-run-all2": "^7.0.0",
|
|
"rollup": "^4.19.0",
|
|
"rollup-plugin-copy": "^3.4.0",
|
|
"rollup-plugin-dts": "^6.1.1",
|
|
"sinon": "^19.0.0",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|