ab64
Version:
The smallest and fastest Base64 implementation in JavaScript
66 lines • 1.55 kB
JSON
{
"name": "ab64",
"version": "0.1.6",
"type": "module",
"description": "The smallest and fastest Base64 implementation in JavaScript",
"repository": "https://github.com/un-ts/ab64.git",
"author": "JounQin (https://www.1stG.me) <admin@1stg.me>",
"funding": "https://opencollective.com/unts",
"license": "MIT",
"engines": {
"node": "^12.20.0 || ^14.18.0 || >=16.0.0"
},
"exports": {
".": {
"import": {
"browser": {
"types": "./lib/browser.d.ts",
"default": "./lib/browser.js"
},
"default": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"module-sync": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"require": {
"types": "./index.d.cts",
"default": "./lib/index.cjs"
}
},
"./package.json": "./package.json",
"./mini-app": {
"types": "./lib/mini-app.d.ts",
"default": "./lib/mini-app.js"
},
"./polyfill": {
"types": "./lib/polyfill.d.ts",
"default": "./lib/polyfill.js"
},
"./ponyfill": {
"types": "./lib/ponyfill.d.ts",
"default": "./lib/ponyfill.js"
}
},
"files": [
"index.d.cts",
"lib",
"!**/*.tsbuildinfo"
],
"keywords": [
"atob",
"base64",
"btoa",
"base64-decoder",
"base64-decoding",
"base64-encoder",
"base64-encoding",
"base64-url"
],
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts"
}