{
  "name": "arraybuffer-encoding",
  "version": "1.1.0",
  "description": "ArrayBuffer to base64 and hex encoding/decoding utilities",
  "main": "dist/cjs/index.js",
  "types": "dist/types/index.d.ts",
  "type": "module",
  "directories": {
    "test": "test"
  },
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "types": "./dist/types/index.d.ts"
    },
    "./hex": {
      "import": "./dist/esm/hex.js",
      "require": "./dist/cjs/hex.js",
      "types": "./dist/types/hex.d.ts"
    },
    "./base64": {
      "import": "./dist/esm/base64/index.js",
      "require": "./dist/cjs/base64/index.js",
      "types": "./dist/types/base64/index.d.ts"
    },
    "./base64/*": {
      "import": "./dist/esm/base64/*.js",
      "require": "./dist/cjs/base64/*.js",
      "types": "./dist/types/base64/*.d.ts"
    }
  },
  "typesVersions": {
    "*": {
      "*": [
        "dist/types/index.d.ts"
      ],
      "hex": [
        "./dist/types/hex.d.ts"
      ],
      "base64": [
        "./dist/types/base64/index.d.ts"
      ],
      "base64/*": [
        "./dist/types/base64/*.d.ts"
      ]
    }
  },
  "scripts": {
    "build": "npm run tsc",
    "clean": "rimraf dist",
    "docs": "npm run typedoc",
    "tsc": "npm run clean && npm run tsc:esm && npm run tsc:cjs",
    "tsc:cjs": "tsc --outDir dist/cjs --module commonjs && echo '{\"type\": \"commonjs\"}'> dist/cjs/package.json",
    "tsc:esm": "tsc --outDir dist/esm --module node12",
    "test": "c8 npm run test-nocov",
    "test-nocov": "TS_NODE_COMPILER_OPTIONS='{\"module\":\"node12\",\"types\":[\"mocha\",\"node\"]}' mocha --loader=ts-node/esm --extension ts test/**/*.test.ts",
    "lint": "npm run tslint",
    "tslint": "tslint -p tsconfig.json",
    "typedoc": "typedoc --options typedoc.json --tsconfig tsconfig.json && touch docs/.nojekyll",
    "prepublishOnly": "npm run tslint && npm run build && npm run test"
  },
  "devDependencies": {
    "@types/node": "^16.0.0",
    "@types/mocha": "^9.0.0",
    "c8": "^7.10.0",
    "mocha": "^9.1.3",
    "rimraf": "^3.0.2",
    "ts-node": "^10.4.0",
    "tslint": "^6.1.3",
    "typedoc": "^0.22.10",
    "typescript": "^4.6.0-dev.20211226"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ItalyPaleAle/arraybuffer-encode.git"
  },
  "keywords": [
    "arraybuffer",
    "hex",
    "base64"
  ],
  "author": "Alessandro Segala (@ItalyPaleAle)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ItalyPaleAle/arraybuffer-encode/issues"
  },
  "homepage": "https://github.com/ItalyPaleAle/arraybuffer-encode#readme"
}
