{
  "name": "@thi.ng/bitstream",
  "version": "2.2.22",
  "description": "ES6 iterator based read/write bit streams with support for variable word widths",
  "type": "module",
  "module": "./index.js",
  "typings": "./index.d.ts",
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/thi-ng/umbrella.git"
  },
  "homepage": "https://github.com/thi-ng/umbrella/tree/develop/packages/bitstream#readme",
  "funding": [
    {
      "type": "github",
      "url": "https://github.com/sponsors/postspectacular"
    },
    {
      "type": "patreon",
      "url": "https://patreon.com/thing_umbrella"
    }
  ],
  "author": "Karsten Schmidt (https://thi.ng)",
  "license": "Apache-2.0",
  "scripts": {
    "build": "yarn clean && tsc --declaration",
    "clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
    "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
    "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
    "doc:readme": "yarn doc:stats && tools:readme",
    "doc:stats": "tools:module-stats",
    "pub": "yarn npm publish --access public",
    "test": "testament test"
  },
  "dependencies": {
    "@thi.ng/errors": "^2.2.17"
  },
  "devDependencies": {
    "@microsoft/api-extractor": "^7.35.3",
    "@thi.ng/testament": "^0.3.17",
    "rimraf": "^5.0.1",
    "tools": "^0.0.1",
    "typedoc": "^0.24.8",
    "typescript": "^5.1.3"
  },
  "keywords": [
    "binary",
    "datastructure",
    "iterator",
    "stream",
    "typescript"
  ],
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=12.7"
  },
  "files": [
    "./*.js",
    "./*.d.ts"
  ],
  "exports": {
    ".": {
      "default": "./index.js"
    },
    "./input": {
      "default": "./input.js"
    },
    "./output": {
      "default": "./output.js"
    },
    "./simple": {
      "default": "./simple.js"
    }
  },
  "thi.ng": {
    "related": [
      "range-coder",
      "rle-pack"
    ]
  },
  "gitHead": "54e825a976c72067a244cff8725ca98f5416d26d\n"
}