tardis-machine
Version:
Locally runnable server with built-in data caching, providing both tick-level historical and consolidated real-time cryptocurrency market data via HTTP and WebSocket APIs
119 lines (118 loc) • 3.09 kB
JSON
{
"name": "tardis-machine",
"version": "15.1.0",
"engines": {
"node": ">=24"
},
"description": "Locally runnable server with built-in data caching, providing both tick-level historical and consolidated real-time cryptocurrency market data via HTTP and WebSocket APIs",
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"repository": "tardis-dev/tardis-machine",
"homepage": "https://github.com/tardis-dev/tardis-machine",
"scripts": {
"build": "tsc",
"precommit": "lint-staged",
"test": "export UWS_HTTP_MAX_HEADERS_SIZE=20000 && npm run build && node --experimental-vm-modules ./node_modules/jest/bin/jest.js --forceExit --runInBand",
"prepare": "npm run build",
"format": "prettier --write .",
"check-format": "prettier --check .",
"benchmark": "node ./benchmark.js"
},
"bin": {
"tardis-machine": "./bin/tardis-machine.js"
},
"files": [
"src",
"dist",
"bin",
"benchmark.js"
],
"keywords": [
"cryptocurrency data feed",
"market data",
"api client",
"crypto markets data replay",
"historical data",
"real-time cryptocurrency market data feed",
"historical cryptocurrency prices",
"cryptocurrency api",
"real-time normalized WebSocket cryptocurrency markets data",
"normalized cryptocurrency market data API",
"order book reconstruction",
"market data normalization",
"cryptocurrency api",
"cryptocurrency",
"orderbook",
"exchange",
"websocket",
"realtime",
"bitmex",
"binance",
"trading",
"high granularity order book data",
"replay service",
"historical cryptocurrency market data replay API"
],
"license": "MPL-2.0",
"dependencies": {
"debug": "^4.4.1",
"find-my-way": "^9.3.0",
"is-docker": "^2.2.1",
"tardis-dev": "^15.2.0",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.59.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@types/node-fetch": "^2.6.13",
"@types/split2": "^4.2.3",
"@types/ws": "^8.18.1",
"@types/yargs": "^17.0.33",
"cross-var": "^1.1.0",
"husky": "^9.1.7",
"jest": "^30.0.5",
"lint-staged": "^16.1.2",
"node-fetch": "^2.6.1",
"prettier": "^3.6.2",
"split2": "^4.2.0",
"ts-jest": "^29.4.0",
"typescript": "^5.9.2",
"ws": "^8.18.3"
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"git add"
]
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"\\.(ts|tsx)?$": [
"ts-jest",
{
"useESM": true,
"tsconfig": "./test/tsconfig.json"
}
]
},
"testEnvironment": "node"
}
}