@extasyio/market-models
Version:
Typed market data models (Trade, OrderBookSnapshot, MarketTick) with Zod validation and MsgPack/JSON serialization
41 lines • 882 B
JSON
{
"name": "@extasyio/market-models",
"version": "0.1.1",
"description": "Typed market data models (Trade, OrderBookSnapshot, MarketTick) with Zod validation and MsgPack/JSON serialization",
"keywords": [
"trading",
"models",
"orderbook",
"candle",
"msgpack"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"sideEffects": false,
"dependencies": {
"decimal.js-light": "^2.5.1",
"msgpackr": "^1.10.1",
"zod": "^4.0.5"
},
"devDependencies": {
"vitest": "^1.5.0",
"tsup": "^8.0.0",
"typescript": "~5.4.0"
},
"scripts": {
"build": "tsup src/index.ts --dts",
"test": "vitest run",
"dev": "vitest watch",
"lint": "eslint . --ext .ts"
}
}