@gmod/bgzf-filehandle
Version:
read from a compressed bgzip file (with .gzi) as if it were uncompressed
71 lines (70 loc) • 2.05 kB
JSON
{
"name": "@gmod/bgzf-filehandle",
"version": "6.2.0",
"description": "read from a compressed bgzip file (with .gzi) as if it were uncompressed",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GMOD/bgzf-filehandle.git"
},
"type": "module",
"main": "dist/index.js",
"exports": {
"import": "./esm/index.js",
"require": "./dist/index.js"
},
"files": [
"dist",
"esm",
"src"
],
"scripts": {
"test": "vitest",
"test:pack": "./scripts/test-pack.sh",
"clean": "rimraf dist esm",
"format": "prettier --write .",
"lint": "eslint --report-unused-disable-directives --max-warnings 0",
"prebuild": "pnpm clean",
"build:esm": "tsc --outDir esm",
"build:es5": "tsc --module commonjs --moduleResolution bundler --outDir dist",
"postbuild:es5": "echo '{\"type\": \"commonjs\"}' > dist/package.json",
"preversion": "pnpm lint && pnpm test --run && pnpm build",
"postversion": "git push --follow-tags",
"build": "pnpm build:wasm && pnpm build:esm && pnpm build:es5",
"benchonly": "vitest bench",
"bench": "./scripts/build-both-branches.sh \"$BRANCH1\" \"$BRANCH2\" && vitest bench",
"build:wasm": "pnpm --filter bgzf-wasm-build build"
},
"keywords": [
"bionode",
"biojs"
],
"dependencies": {
"generic-filehandle2": "^2.1.4",
"pako-esm2": "^2.0.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.2.1",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-unicorn": "^64.0.0",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.5",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2"
},
"publishConfig": {
"access": "public"
},
"author": {
"name": "Colin Diesh",
"email": "colin.diesh@gmail.com"
}
}