brocha
Version:
Universal Brotli decompressor written in 100% TypeScript with zero dependencies. Blazing fast, lightweight, and compatible with any ES2015+ environment.
72 lines (71 loc) • 1.75 kB
JSON
{
"name": "brocha",
"version": "0.1.1",
"author": {
"name": "Nicholas Berlette",
"email": "nick@berlette.com",
"url": "https://berlette.com/"
},
"license": "MIT",
"private": false,
"type": "module",
"packageManager": "bun@1.1.40",
"types": "dist/index.d.ts",
"main": "dist/index.min.cjs",
"module": "dist/index.min.js",
"unpkg": "dist/index.umd.min.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.min.js",
"require": "./dist/index.min.cjs",
"browser": "./dist/index.umd.min.js",
"default": "./dist/index.min.js"
},
"./max": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"browser": "./dist/index.umd.js",
"default": "./dist/index.js"
}
},
"description": "Universal Brotli decompressor written in 100% TypeScript with zero dependencies. Blazing fast, lightweight, and compatible with any ES2015+ environment.",
"repository": {
"type": "git",
"url": "https://github.com/nberlette/brocha.git"
},
"homepage": "https://github.com/nberlette/brocha#readme",
"readme": "https://github.com/nberlette/brocha#readme",
"bugs": {
"url": "https://github.com/nberlette/brocha/issues"
},
"keywords": [
"brotli",
"decompressor",
"decompress",
"compression",
"decompression",
"brotli-decompressor",
"brotli-decoder",
"br",
"brotli decompressor",
"lz77",
"zlib",
"universal",
"es2015",
"deno",
"bun",
"node",
"browsers"
],
"scripts": {
"prepublish": "deno run -A ../scripts/build.ts"
},
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
]
}