UNPKG

huffman-ts

Version:

Huffman ts is an implementation of Huffman Algorithm in Typescript. It provides full compatibility with Huffman algorithm reference.

68 lines (67 loc) 1.35 kB
{ "version": "0.1.3", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "engines": { "node": ">=10" }, "repository": { "type": "git", "url": "git+https://github.com/wizardpisces/huffman-ts.git" }, "homepage": "https://github.com/wizardpisces/huffman-ts#readme", "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "lint": "tsdx lint", "prepare": "tsdx build", "size": "size-limit", "analyze": "size-limit --why" }, "peerDependencies": {}, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "name": "huffman-ts", "author": "wizardpisces", "module": "dist/huffman-ts.esm.js", "keywords": [ "huffman", "tree", "encode", "decode", "typescript" ], "size-limit": [ { "path": "dist/huffman-ts.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/huffman-ts.esm.js", "limit": "10 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^4.10.1", "husky": "^5.1.3", "size-limit": "^4.10.1", "tsdx": "^0.14.1", "tslib": "^2.1.0", "typescript": "^4.2.3" } }