{
  "name": "node-pkware",
  "version": "5.9.1",
  "description": "node.js implementation of StormLib's pkware compressor/de-compressor",
  "main": "dist/stream/index.js",
  "types": "dist/stream/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/stream/index.js",
      "types": "./dist/stream/index.d.ts"
    },
    "./stream": {
      "default": "./dist/stream/index.js",
      "types": "./dist/stream/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 && find dist -type f -name '*.spec.*' -delete",
    "test": "ts-mocha --import=@hyperse/ts-node/register src/**/*.spec.ts",
    "test:watch": "nodemon --watch src --exec \"npm run test\" --ext ts"
  },
  "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": {
    "@hyperse/ts-node": "^1.1.0",
    "@trivago/prettier-plugin-sort-imports": "^5.2.0",
    "@types/expect": "^1.20.4",
    "@types/mocha": "^10.0.10",
    "@types/node": "^22.10.2",
    "eslint-plugin-unused-imports": "^4.3.0",
    "expect": "^30.2.0",
    "mocha": "^11.7.5",
    "nodemon": "^3.1.11",
    "ts-mocha": "^11.1.0",
    "tsc-alias": "^1.8.10",
    "typescript": "5.6.3",
    "xo": "^1.2.3"
  },
  "keywords": [
    "pkware",
    "stormlib",
    "implode",
    "explode",
    "compression",
    "decompression",
    "blast",
    "arx-fatalis"
  ]
}
