{
    "name": "zip-lib",
    "version": "1.4.0",
    "description": "A zip and unzip library for Node.js.",
    "main": "lib/index.js",
    "types": "./lib/index.d.ts",
    "scripts": {
        "lint": "biome lint",
        "tsc-cjs": "tsc -p ./src/tsconfig.production.cjs.json",
        "release": "rimraf ./pkg && npm run tsc-cjs && node ./build.mjs",
        "test": "vitest run",
        "test:coverage": "vitest run --coverage"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/fpsqdb/zip-lib.git"
    },
    "engines": {
        "node": ">=20"
    },
    "keywords": [
        "zip",
        "folder",
        "unzip",
        "archive",
        "extract",
        "promise",
        "async"
    ],
    "author": "fpsqdb",
    "license": "MIT",
    "dependencies": {
        "yauzl": "^3.4.0",
        "yazl": "^3.3.1"
    },
    "devDependencies": {
        "@biomejs/biome": "^2.4.16",
        "@types/node": "^20.19.42",
        "@types/yauzl": "^3.3.0",
        "@types/yazl": "^3.3.1",
        "@vitest/coverage-v8": "^4.1.2",
        "rimraf": "^6.1.3",
        "typescript": "^6.0.3",
        "vitest": "^4.0.18"
    }
}
