{
  "name": "bioleptic-js",
  "version": "0.3.1",
  "description": "Wavelet-based signal compression",
  "license": "(BSD-3-Clause OR Apache-2.0)",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/awxkee/bioleptic.git"
  },
  "author": {
    "name": "Radzivon Bartoshyk",
    "url": "https://github.com/awxkee"
  },
  "keywords": [
    "compression",
    "ppg",
    "ecg",
    "dsp",
    "wasm",
    "wavelet"
  ],
  "homepage": "https://github.com/awxkee/bioleptic",
  "type": "module",
  "main": "./nodejs/bioleptic_js.cjs",
  "module": "./bundler/bioleptic_js.js",
  "browser": "./web/bioleptic_js.js",
  "exports": {
    ".": {
      "node": {
        "types": "./nodejs/bioleptic_js.d.ts",
        "require": "./nodejs/bioleptic_js.cjs"
      },
      "browser": {
        "types": "./bundler/bioleptic_js.d.ts",
        "import": "./web/bioleptic_js.js"
      },
      "default": {
        "types": "./bundler/bioleptic_js.d.ts",
        "import": "./bundler/bioleptic_js.js"
      }
    }
  },
  "types": "./bundler/bioleptic_js.d.ts",
  "files": [
    "bundler/",
    "web/",
    "nodejs/",
    "README.md"
  ],
  "sideEffects": false,
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "wasm-pack build --target bundler --release",
    "build:node": "wasm-pack build --target nodejs --release",
    "build:web": "wasm-pack build --target web --release"
  }
}
