radix64-encoding
Version:
Radix64 encoding, a.k.a. Base64 encoding. An extremely fast and synchronous JS implementation.
39 lines (38 loc) • 934 B
JSON
{
"name": "radix64-encoding",
"repository": "github:fabiospampinato/radix64-encoding",
"description": "Radix64 encoding, a.k.a. Base64 encoding. An extremely fast and synchronous JS implementation.",
"license": "MIT",
"version": "2.0.2",
"type": "module",
"main": "dist/node.js",
"types": "./dist/node.d.ts",
"exports": {
"node": "./dist/node.js",
"default": "./dist/browser.js"
},
"scripts": {
"clean": "tsex clean",
"compile": "tsex compile",
"compile:watch": "tsex compile --watch",
"test": "tsex test",
"test:watch": "tsex test --watch",
"prepublishOnly": "tsex prepare"
},
"keywords": [
"radix64",
"base64",
"encoding",
"fast"
],
"dependencies": {
"node-buffer-encoding": "^1.0.3",
"uint8-encoding": "^2.0.1"
},
"devDependencies": {
"fast-check": "^3.23.2",
"fava": "^0.3.4",
"tsex": "^4.0.2",
"typescript": "^5.7.3"
}
}