@flatfile/plugin-xlsx-extractor
Version:
A plugin for parsing xlsx files in Flatfile.
67 lines • 1.93 kB
JSON
{
"name": "@flatfile/plugin-xlsx-extractor",
"version": "4.0.6",
"url": "https://github.com/FlatFilers/flatfile-plugins/tree/main/plugins/xlsx-extractor",
"description": "A plugin for parsing xlsx files 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": "David Boskovic",
"repository": {
"type": "git",
"url": "git+https://github.com/FlatFilers/flatfile-plugins.git",
"directory": "plugins/xlsx-extractor"
},
"license": "ISC",
"dependencies": {
"@flatfile/util-extractor": "^2.7.1",
"remeda": "^1.14.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"peerDependencies": {
"@flatfile/listener": "^1.1.0"
},
"devDependencies": {
"@flatfile/bundler-config-tsup": "^0.2.0",
"@flatfile/config-vitest": "^0.0.0"
}
}