Publish v0.1.0

This commit is contained in:
Kenny Daniel 2024-05-20 01:02:12 -07:00
parent 567d14617e
commit c73ac7e5b7
No known key found for this signature in database
GPG Key ID: 90AB653A8CAD7E45
4 changed files with 9 additions and 2 deletions

2
.gitignore vendored

@ -2,3 +2,5 @@ coverage
node_modules
package-lock.json
dist
*.tgz
.vscode

@ -1,5 +1,6 @@
# hyparquet decompressors
[![npm](https://img.shields.io/npm/v/hyparquet-compressors)](https://www.npmjs.com/package/hyparquet-compressors)
[![workflow status](https://github.com/hyparam/hyparquet-compressors/actions/workflows/ci.yml/badge.svg)](https://github.com/hyparam/hyparquet-compressors/actions)
[![mit license](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
![coverage](https://img.shields.io/badge/Coverage-97-darkred)

@ -1,8 +1,9 @@
{
"name": "hyparquet-compressors",
"version": "0.1.0",
"description": "hyparquet decompressors",
"description": "Decompressors for hyparquet",
"keywords": [
"brotli",
"decompress",
"decompression",
"decompressor",
@ -17,6 +18,9 @@
"url": "git+https://github.com/hyparam/hyparquet-compressors.git"
},
"main": "src/index.js",
"files": [
"src"
],
"type": "module",
"types": "src/index.d.ts",
"scripts": {

2
src/index.d.ts vendored

@ -1,3 +1,3 @@
import { Compressors } from 'hyparquet'
import type { Compressors } from 'hyparquet'
export const compressors: Compressors