{
  "name": "edf2csv",
  "version": "0.10.7",
  "description": "Convert EDF, EDF+ and BDF biosignal recordings (European Data Format) to CSV from the command line. Local, streaming, and never resamples or alters units.",
  "keywords": [
    "edf",
    "edf+",
    "bdf",
    "european data format",
    "edf to csv",
    "csv",
    "converter",
    "eeg",
    "ecg",
    "emg",
    "eog",
    "biosignal",
    "physiological signals",
    "polysomnography",
    "sleep study",
    "neuroscience",
    "cli",
    "biosemi"
  ],
  "license": "MIT",
  "author": "Sarthak Tayal",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tayal-sarthak/edf2csv.git"
  },
  "bugs": {
    "url": "https://github.com/tayal-sarthak/edf2csv/issues"
  },
  "homepage": "https://edf2csv.vercel.app",
  "type": "module",
  "bin": {
    "edf2csv": "dist/cli.js"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "clean": "node -e \"fs.rmSync('dist',{recursive:true,force:true})\"",
    "prepare": "npm run build",
    "fixtures": "node test/fixtures/generate.mjs",
    "test": "npm run build && npm run fixtures && node --test test/*.test.js",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "prepublishOnly": "npm run clean && npm run build && npm test",
    "crossvalidate": "npm run build && node test/crossvalidate/generate.mjs && python3 test/crossvalidate/compare.py",
    "fuzz": "npm run build && npm run fixtures && node test/fuzz/mutate.mjs",
    "fuzz:batch": "npm run build && npm run fixtures && node test/fuzz/trees.mjs",
    "estimate": "npm run build && npm run fixtures && node test/fuzz/estimate.mjs",
    "roundtrip": "npm run build && node test/fuzz/roundtrip.mjs",
    "layouts": "npm run build && npm run fixtures && node test/fuzz/layouts.mjs",
    "narrowing": "npm run build && npm run fixtures && node test/fuzz/narrowing.mjs",
    "stream": "npm run build && npm run fixtures && node test/fuzz/stream.mjs",
    "terminal": "npm run build && node test/fuzz/terminal.mjs"
  },
  "devDependencies": {
    "@types/node": "^22.10.0",
    "typescript": "^5.7.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
