diff --git a/installer.mjs b/installer.mjs index 7c128a0..54b135a 100644 --- a/installer.mjs +++ b/installer.mjs @@ -61,7 +61,7 @@ const linuxPlatform = { destination: join(cwd, 'linux'), url: 'https://github.com/techno-express/p7zip/releases/download/17.02/', filename: 'linux-p7zip.7z', - extraName: 'lzma1701.7z', + extraName: 'lzma1604.7z', extractFolder: '', appLocation: '', binaryFiles: ['7z', '7z.so', '7za', '7zCon.sfx', '7zr', 'Codecs'], @@ -69,7 +69,7 @@ const linuxPlatform = { sfxModules: null, platform: 'linux', binary: '7z', - extraSourceFile: join(cwd, 'linux', 'lzma1701.7z'), + extraSourceFile: join(cwd, 'linux', 'lzma1604.7z'), }; const appleMacPlatform = { @@ -77,7 +77,7 @@ const appleMacPlatform = { destination: join(cwd, 'darwin'), url: 'https://github.com/techno-express/p7zip/releases/download/17.02/', filename: 'macos-p7zip.7z', - extraName: 'lzma1701.7z', + extraName: 'lzma1604.7z', extractFolder: '', appLocation: '', binaryFiles: ['7z', '7z.so', '7za', '7zCon.sfx', '7zr', 'Codecs'], @@ -85,7 +85,7 @@ const appleMacPlatform = { sfxModules: null, platform: 'darwin', binary: '7z', - extraSourceFile: join(cwd, 'darwin', 'lzma1701.7z'), + extraSourceFile: join(cwd, 'darwin', 'lzma1604.7z'), }; function retrieve(path = { diff --git a/package-lock.json b/package-lock.json index f802c8d..5a67f06 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "node-7z-archive", - "version": "1.1.5", + "version": "1.1.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "node-7z-archive", - "version": "1.1.5", + "version": "1.1.7", "hasInstallScript": true, "license": "MIT", "dependencies": { @@ -75,9 +75,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "18.16.19", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.19.tgz", - "integrity": "sha512-IXl7o+R9iti9eBW4Wg2hx1xQDig183jj7YLn8F7udNceyfkbn1ZxmzZXuak20gR40D7pIkIY1kYGx5VIGbaHKA==", + "version": "18.17.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.17.0.tgz", + "integrity": "sha512-GXZxEtOxYGFchyUzxvKI14iff9KZ2DI+A6a37o6EQevtg6uO9t+aUZKcaC1Te5Ng1OnLM7K9NVVj+FbecD9cJg==", "devOptional": true }, "node_modules/@types/when": { @@ -1310,9 +1310,9 @@ "dev": true }, "@types/node": { - "version": "18.16.19", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.19.tgz", - "integrity": "sha512-IXl7o+R9iti9eBW4Wg2hx1xQDig183jj7YLn8F7udNceyfkbn1ZxmzZXuak20gR40D7pIkIY1kYGx5VIGbaHKA==", + "version": "18.17.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.17.0.tgz", + "integrity": "sha512-GXZxEtOxYGFchyUzxvKI14iff9KZ2DI+A6a37o6EQevtg6uO9t+aUZKcaC1Te5Ng1OnLM7K9NVVj+FbecD9cJg==", "devOptional": true }, "@types/when": { diff --git a/package.json b/package.json index 9418055..23197e3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-7z-archive", - "version": "1.1.5", + "version": "1.1.7", "description": "ESM front-end to 7-Zip, featuring alternative full 7z CLI tools, binaries for Linux, Windows, Mac OSX, seamlessly create 7zip SFX self extracting archives targeting different platforms.", "type": "module", "main": "lib/index.js", @@ -78,7 +78,7 @@ }, "dependencies": { "fs-extra": "^10.1.0", - "minimist": "1.2.8", + "minimist": "^1.2.8", "node-sys": "^1.2.2", "node-unar": "^1.0.8", "node-wget-fetch": "^1.1.3",