{
  "name": "fast-base64",
  "description": "Fastest possible base64 encoding/decoding using WebAssembly",
  "version": "0.1.8",
  "author": "gregor <gregor.mitscha-baude@gmx.at>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/mitschabaude/fast-base64"
  },
  "keywords": [
    "base64",
    "wasm",
    "simd",
    "fast",
    "deno"
  ],
  "type": "module",
  "main": "./dist/wasm.js",
  "exports": {
    ".": {
      "import": "./dist/wasm.js"
    },
    "./small": {
      "import": "./small.js"
    },
    "./js": {
      "import": "./js.js"
    },
    "./nano": {
      "import": "./nano.js"
    },
    "./url": {
      "import": "./url.js"
    }
  },
  "types": "./index.d.ts",
  "typesVersions": {
    "*": {
      "./index.d.ts": [
        "./types/index.d.ts"
      ],
      "*": [
        "./types/*"
      ]
    }
  },
  "files": [
    "types",
    "dist",
    "js.js",
    "small.js",
    "nano.js",
    "url.js"
  ],
  "scripts": {
    "build": "node build-lib.js",
    "test": "npx chrode test-base64.js"
  },
  "dependencies": {},
  "devDependencies": {
    "@types/node": "^16.4.3",
    "binaryen": "^101.0.0",
    "chrode": "^0.2.8",
    "esbuild": "^0.12.15",
    "esbuild-plugin-inline-worker": "^0.1.1",
    "esbuild-plugin-wat": "0.1.4",
    "eslint": "^7.31.0",
    "find-cache-dir": "^3.3.1",
    "wabt": "^1.0.23"
  }
}
