UNPKG

lz-ts

Version:

LZ-based compression algorithm for TypeScript projects (Browser, Node.js)

46 lines (45 loc) 1.07 kB
{ "name": "lz-ts", "version": "1.1.2", "main": "index.js", "typings": "dist/index.d.ts", "description": "LZ-based compression algorithm for TypeScript projects (Browser, Node.js)", "keywords": [ "lz", "compression", "string", "typescript", "browser", "Node.js", "UTF16", "URI" ], "directories": { "test": "test" }, "scripts": { "prebuild": "rm -rf dist", "build": "esbuild src/index.ts --format=cjs --bundle --minify --target=chrome58 --outfile=index.js", "postbuild": "tsc", "deploy": "npm pack", "pretest": "yarn build", "test": "jest" }, "repository": { "type": "git", "url": "https://github.com/kyr0/lz-ts.git" }, "bugs": { "url": "https://github.com/kyr0/lz-ts/issues" }, "author": "Aron Homberg <info@aron-homberg.de>, pieroxy <pieroxy@pieroxy.net>", "license": "MIT", "devDependencies": { "@types/jest": "^27.4.1", "@types/node": "^16.11.7", "esbuild": "^0.14.3", "jest": "^27.5.1", "ts-jest": "^27.1.3", "typescript": "^4.6.2" } }