@flatfile/plugin-zip-extractor
Version:
A plugin for unzipping zip files and uploading content back in Flatfile.
73 lines (72 loc) • 2.11 kB
JSON
{
"name": "@flatfile/plugin-zip-extractor",
"version": "0.8.1",
"url": "https://github.com/FlatFilers/flatfile-plugins/tree/main/plugins/zip-extractor",
"description": "A plugin for unzipping zip files and uploading content back in Flatfile.",
"registryMetadata": {
"category": "extractors"
},
"type": "module",
"engines": {
"node": ">= 18"
},
"exports": {
".": {
"node": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"build:prod": "NODE_ENV=production tsup",
"checks": "tsc --noEmit && attw --pack . && publint .",
"lint": "tsc --noEmit",
"test": "vitest run --mode defaults src/*.spec.ts --passWithNoTests",
"test:unit": "vitest run --mode defaults src/*.spec.ts --passWithNoTests --exclude src/*.e2e.spec.ts",
"test:e2e": "vitest run --mode defaults src/*.e2e.spec.ts --passWithNoTests --no-file-parallelism"
},
"keywords": [
"flatfile-plugins",
"category-extractors"
],
"author": "Carl Brugger",
"repository": {
"type": "git",
"url": "git+https://github.com/FlatFilers/flatfile-plugins.git",
"directory": "plugins/zip-extractor"
},
"license": "ISC",
"dependencies": {
"@flatfile/plugin-job-handler": "^0.8.1",
"@flatfile/util-common": "^1.6.0",
"@flatfile/util-file-buffer": "^0.6.0",
"adm-zip": "^0.5.10",
"modern-async": "^2.0.0"
},
"peerDependencies": {
"@flatfile/api": "^1.9.19",
"@flatfile/listener": "^1.1.0"
},
"devDependencies": {
"@flatfile/bundler-config-tsup": "^0.2.0",
"@flatfile/config-vitest": "^0.0.0",
"@flatfile/utils-testing": "^0.5.0",
"@types/adm-zip": "^0.4.3"
}
}