UNPKG

x-law

Version:

A-Law and mu-Law codecs for JavaScript/TypeScript

54 lines (53 loc) 1.32 kB
{ "name": "x-law", "version": "0.3.1", "description": "A-Law and mu-Law codecs for JavaScript/TypeScript", "homepage": "https://nitodeco.github.io/xlaw/", "author": "Nico Möhn <nitodeco@users.noreply.github.com>", "contributors": [ "Rafael da Silva Rocha <rocha.rafaelsilva@gmail.com>" ], "license": "MIT", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "engines": { "node": ">=18" }, "type": "module", "keywords": [ "A-Law", "mu-Law", "audio", "codec", "encode", "decode", "compander", "companding", "PCM", "streaming" ], "repository": { "type": "git", "url": "git://github.com/nitodeco/xlaw.git" }, "bugs": { "url": "https://github.com/nitodeco/xlaw/issues" }, "scripts": { "format": "prettier --write .", "precommit": "husky", "build": "npm run precommit && tsup", "docs": "typedoc --entryPointStrategy Expand src/index.ts --out docs --plugin typedoc-github-theme", "validate": "npm run precommit && npm run build && npm run docs" }, "devDependencies": { "@types/node": "^22.10.7", "husky": "^9.1.7", "prettier": "^3.4.2", "tsup": "^8.3.5", "typedoc": "^0.27.6", "typedoc-github-theme": "^0.2.1", "typescript": "^5.0.0" } }