{
    "name": "@hpicgs/cbd-parser",
    "version": "0.9.0",
    "description": "Column-based Data Parser: Multi-threaded tabular data parsing using web workers, e.g., for CSV files or spreadsheets.",
    "type": "module",
    "module": "./lib/cbd.js",
    "exports": "./lib/cbd.js",
    "types": "./lib/types/cbd.d.ts",
    "files": [
        "lib",
        "CHANGELOG.md"
    ],
    "scripts": {
        "build": "node scripts/build.js && tsc",
        "vite-watch": "node scripts/build.js --watch",
        "tsc-watch": "tsc --watch",
        "watch": "concurrently npm:vite-watch npm:tsc-watch",
        "prepare": "npm run build",
        "prepack": "node scripts/prepack.js",
        "postpack": "node scripts/postpack.js"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/hpicgs/cbd-parser.git"
    },
    "keywords": [
        "csv",
        "tabular data",
        "parser",
        "multithreaded",
        "worker",
        "parallel"
    ],
    "author": "Lukas Wagner, Willy Scheibel",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/hpicgs/cbd-parser/issues"
    },
    "homepage": "https://github.com/hpicgs/cbd-parser#readme",
    "engines": {
        "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
    },
    "devDependencies": {
        "@rollup/plugin-replace": "^4.0.0",
        "concurrently": "^7.0.0",
        "typescript": "^4.6.2",
        "vite": "^2.8.6"
    },
    "publishConfig": {
        "access": "public"
    }
}
