{ "name": "brotli-dec-wasm", "version": "2.3.0", "description": "Brotli decompressor for browsers and web workers with WASM, which still has a small size (about 200KB)", "scripts": { "build": "wasm-pack build -t web", "test": "test/test.sh test", "format": "prettier --write .", "format:check": "prettier --check ." }, "repository": { "type": "git", "url": "git+https://github.com/ustclug-dev/brotli-dec-wasm.git" }, "keywords": [ "brotli", "brotli-decompressor", "wasm", "rust" ], "author": "myl7", "license": "MIT OR Apache-2.0", "bugs": { "url": "https://github.com/ustclug-dev/brotli-dec-wasm/issues" }, "homepage": "https://github.com/ustclug-dev/brotli-dec-wasm#readme", "files": [ "pkg/brotli_dec_wasm_bg.wasm", "pkg/brotli_dec_wasm_bg.wasm.d.ts", "pkg/brotli_dec_wasm.d.ts", "pkg/brotli_dec_wasm.js", "*.js", "*.d.ts", "LICENSE-*" ], "type": "module", "sideEffects": false, "main": "index.js", "module": "index.js", "types": "index.d.ts", "exports": { ".": { "types": "./index.d.ts", "import": "./index.js", "default": "./index.js" }, "./web": { "types": "./pkg/brotli_dec_wasm.d.ts", "import": "./pkg/brotli_dec_wasm.js", "default": "./pkg/brotli_dec_wasm.js" }, "./web/bg.wasm": { "types": "./pkg/brotli_dec_wasm_bg.wasm.d.ts", "import": "./pkg/brotli_dec_wasm_bg.wasm", "default": "./pkg/brotli_dec_wasm_bg.wasm" } }, "devDependencies": { "@types/bun": "latest" }, "peerDependencies": { "typescript": "^5.0.0" }, "dependencies": { "prettier": "^3.2.5" } }