hyparquet-compressors/package.json

56 lines
1.2 KiB
JSON
Raw Normal View History

2024-05-09 04:23:01 +00:00
{
"name": "hyparquet-compressors",
2025-03-20 05:50:58 +00:00
"version": "1.0.1",
2024-05-20 08:02:12 +00:00
"description": "Decompressors for hyparquet",
2025-03-19 05:43:11 +00:00
"author": "Hyperparam",
"homepage": "https://hyperparam.app",
2024-05-09 04:23:01 +00:00
"keywords": [
2024-05-20 08:02:12 +00:00
"brotli",
2024-05-09 04:23:01 +00:00
"decompress",
"decompression",
"decompressor",
2024-05-20 01:23:05 +00:00
"gzip",
2024-05-22 19:56:27 +00:00
"gunzip",
2024-05-20 01:23:05 +00:00
"lz4",
2024-05-09 04:23:01 +00:00
"hyparquet",
2024-05-20 09:05:51 +00:00
"parquet",
"zstd"
2024-05-09 04:23:01 +00:00
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hyparam/hyparquet-compressors.git"
},
"main": "src/index.js",
2024-05-20 08:02:12 +00:00
"files": [
"src"
],
2024-05-09 04:23:01 +00:00
"type": "module",
"types": "src/index.d.ts",
"scripts": {
2024-05-19 07:11:41 +00:00
"build": "rollup -c",
2024-05-09 04:23:01 +00:00
"coverage": "vitest run --coverage",
2024-12-10 19:34:24 +00:00
"lint": "eslint",
"lint:fix": "eslint --fix",
2024-05-09 04:23:01 +00:00
"test": "vitest run"
},
"dependencies": {
2024-05-20 07:03:23 +00:00
"fzstd": "0.1.1",
2024-12-10 19:34:24 +00:00
"hysnappy": "1.0.0"
2024-05-09 04:23:01 +00:00
},
"devDependencies": {
2025-03-19 05:43:11 +00:00
"@babel/eslint-parser": "7.26.10",
"@rollup/plugin-commonjs": "28.0.3",
"@rollup/plugin-node-resolve": "16.0.1",
2024-05-19 07:11:41 +00:00
"@rollup/plugin-terser": "0.4.4",
2025-03-19 05:43:11 +00:00
"@types/node": "22.13.10",
"@vitest/coverage-v8": "3.0.9",
"eslint": "9.22.0",
"eslint-plugin-jsdoc": "50.6.8",
"hyparquet": "1.9.1",
"rollup": "4.36.0",
"typescript": "5.8.2",
"vitest": "3.0.9"
2024-05-09 04:23:01 +00:00
}
}