UNPKG

node-pkware

Version:

nodejs implementation of StormLib's pkware compressor/de-compressor

65 lines (64 loc) 1.67 kB
{ "name": "node-pkware", "version": "5.1.0", "description": "nodejs implementation of StormLib's pkware compressor/de-compressor", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "engines": { "npm": ">=8.0.0", "node": ">=18.0.0" }, "bin": { "explode": "dist/bin/explode.js", "implode": "dist/bin/implode.js" }, "exports": { ".": { "default": "./dist/index.js", "types": "./dist/index.d.ts" }, "./simple": { "default": "./dist/simple/index.js", "types": "./dist/simple/index.d.ts" } }, "scripts": { "build": "tsc && tsc-alias", "build:watch": "nodemon --watch src --exec \"npm run build\" --ext ts", "lint": "xo", "lint:watch": "nodemon --watch src --exec \"npm run lint\" --ext ts", "prepublishOnly": "npm run lint && rm -rf dist && rm -f tsconfig.tsbuildinfo && npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/arx-tools/node-pkware.git" }, "bugs": { "url": "https://github.com/arx-tools/node-pkware/issues" }, "homepage": "https://github.com/arx-tools/node-pkware#readme", "author": "Lajos Meszaros <m_lajos@hotmail.com>", "license": "MIT", "dependencies": { "minimist-lite": "^2.2.1" }, "devDependencies": { "@trivago/prettier-plugin-sort-imports": "^5.2.0", "@types/node": "^22.10.2", "eslint-plugin-unused-imports": "^4.1.4", "tsc-alias": "^1.8.10", "typescript": "5.6.3", "xo": "^0.60.0" }, "keywords": [ "arx-fatalis", "pkware", "stormlib", "implode", "explode", "compression", "decompression", "blast" ] }