{
    "name": "fixparser-common",
    "version": "9.4.8",
    "description": "FIXParser shared codebase",
    "files": [
        "./build/",
        "./types/",
        "./LICENSE.md",
        "./README.md"
    ],
    "main": "./build/cjs/index.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",
        "types": "tsc --declaration --emitDeclarationOnly --stripInternal --declarationDir ./types",
        "upgrade-interactive": "ncu -u -t latest"
    },
    "author": "Victor Norgren",
    "homepage": "https://fixparser.dev",
    "license": "LICENSE.md",
    "types": "./types/index.d.ts",
    "exports": {
        ".": {
            "types": "./types/index.d.ts",
            "import": "./build/esm/index.mjs",
            "require": "./build/cjs/index.cjs"
        }
    },
    "devDependencies": {}
}
