fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
103 lines (102 loc) • 3.83 kB
JSON
{
"name": "fixparser",
"version": "9.3.10",
"description": "FIX.Latest / 5.0 SP2 Parser / AI Agent Trading",
"files": [
"./build/",
"./types/",
"./examples/",
"./LICENSE.md",
"./README.md"
],
"main": "./build/cjs/FIXParser.cjs",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/logotype/fixparser.git"
},
"scripts": {
"build": "npm run clean && npm run types && npm run build:main",
"build:main": "node --experimental-strip-types -r ./../../esbuild-hook.ts ./scripts/build",
"clean": "node --experimental-strip-types -r ./../../esbuild-hook.ts ./scripts/clean",
"test": "jest --ci --colors --detectOpenHandles --verbose=false",
"example:parse_message": "tsx examples/run-example.ts example_parse_message.ts",
"example:tcp_client": "tsx examples/run-example.ts example_tcp_client.ts",
"example:tcp_server": "tsx examples/run-example.ts example_tcp_server.ts",
"example:tls_tcp_client": "tsx examples/run-example.ts example_tls-tcp_client.ts",
"example:tls_tcp_server": "tsx examples/run-example.ts example_tls-tcp_server.ts",
"example:ws_client": "tsx examples/run-example.ts example_ws_client.ts",
"example:ws_server": "tsx examples/run-example.ts example_ws_server.ts",
"example:quickfix_client1": "tsx examples/run-example.ts example_quickfix_client1.ts",
"example:quickfix_client1_continuous": "tsx examples/run-example.ts example_quickfix_client1_continuous.ts",
"example:quickfix_executor": "tsx examples/run-example.ts example_quickfix_executor.ts",
"example:quickfix_dual": "tsx examples/run-example.ts example_quickfix_dual.ts",
"perf": "node --prof perf/Perf-FIXParser.js && node --prof-process isolate-*.log | cat",
"type:check": "tsc --noEmit",
"types": "tsc --declaration --emitDeclarationOnly --stripInternal --declarationDir ./types",
"prepare": "husky",
"upgrade-interactive": "ncu -u -t latest"
},
"dependencies": {
"@openpgp/web-stream-tools": "0.1.3",
"fixparser-common": "^9.3.7",
"openpgp": "6.2.0",
"proxy-agent": "6.5.0",
"ws": "8.18.3"
},
"keywords": [
"FIXParser",
"FIX Protocol",
"FIX Parser",
"FIX Client",
"FIX Gateway",
"FIX Server",
"FIX Adapter",
"FIX.Latest",
"FIX.2.7",
"FIX.3.0",
"FIX.4.0",
"FIX.4.1",
"FIX.4.2",
"FIX.4.3",
"FIX.4.4",
"FIX.5.0",
"FIX.5.0SP1",
"FIX.5.0SP2",
"FIXT.1.1",
"FIXServer",
"FIXEncoder",
"FIX",
"FIXJSON",
"FIX JSON",
"Websocket",
"JSON encoding of FIX",
"Financial Information eXchange"
],
"author": "Victor Norgren",
"homepage": "https://fixparser.dev",
"license": "LICENSE.md",
"types": "./types/FIXParser.d.ts",
"exports": {
".": {
"types": "./types/FIXParser.d.ts",
"import": "./build/esm/FIXParser.mjs",
"require": "./build/cjs/FIXParser.cjs"
},
"./FIXParser": {
"types": "./types/FIXParser.d.ts",
"import": "./build/esm/FIXParser.mjs",
"require": "./build/cjs/FIXParser.cjs"
},
"./FIXParserBrowser": {
"types": "./types/FIXParserBrowser.d.ts",
"import": "./build/esm/FIXParserBrowser.mjs",
"require": "./build/cjs/FIXParserBrowser.cjs"
},
"./FIXServer": {
"types": "./types/FIXServer.d.ts",
"import": "./build/esm/FIXServer.mjs",
"require": "./build/cjs/FIXServer.cjs"
}
}
}