{
  "name": "it-tar",
  "version": "6.0.5",
  "description": "it-tar is a streaming tar parser (and maybe a generator in the future) and nothing else. It operates purely using async iterables which means you can easily extract/parse tarballs without ever hitting the file system.",
  "author": "Alan Shaw",
  "license": "Apache-2.0 OR MIT",
  "homepage": "https://github.com/alanshaw/it-tar#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alanshaw/it-tar.git"
  },
  "bugs": {
    "url": "https://github.com/alanshaw/it-tar/issues"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "keywords": [
    "extract",
    "generate",
    "generator",
    "modify",
    "pack",
    "parse",
    "parser",
    "stream",
    "stream2",
    "streaming",
    "streams",
    "streams2",
    "tar",
    "tarball"
  ],
  "type": "module",
  "types": "./dist/src/index.d.ts",
  "files": [
    "src",
    "dist",
    "!dist/test",
    "!**/*.tsbuildinfo"
  ],
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "import": "./dist/src/index.js"
    }
  },
  "eslintConfig": {
    "extends": "ipfs",
    "parserOptions": {
      "project": true,
      "sourceType": "module"
    }
  },
  "release": {
    "branches": [
      "master"
    ],
    "plugins": [
      [
        "@semantic-release/commit-analyzer",
        {
          "preset": "conventionalcommits",
          "releaseRules": [
            {
              "breaking": true,
              "release": "major"
            },
            {
              "revert": true,
              "release": "patch"
            },
            {
              "type": "feat",
              "release": "minor"
            },
            {
              "type": "fix",
              "release": "patch"
            },
            {
              "type": "docs",
              "release": "patch"
            },
            {
              "type": "test",
              "release": "patch"
            },
            {
              "type": "deps",
              "release": "patch"
            },
            {
              "scope": "no-release",
              "release": false
            }
          ]
        }
      ],
      [
        "@semantic-release/release-notes-generator",
        {
          "preset": "conventionalcommits",
          "presetConfig": {
            "types": [
              {
                "type": "feat",
                "section": "Features"
              },
              {
                "type": "fix",
                "section": "Bug Fixes"
              },
              {
                "type": "chore",
                "section": "Trivial Changes"
              },
              {
                "type": "docs",
                "section": "Documentation"
              },
              {
                "type": "deps",
                "section": "Dependencies"
              },
              {
                "type": "test",
                "section": "Tests"
              }
            ]
          }
        }
      ],
      "@semantic-release/changelog",
      "@semantic-release/npm",
      "@semantic-release/github",
      "@semantic-release/git"
    ]
  },
  "scripts": {
    "clean": "aegir clean",
    "lint": "aegir lint",
    "docs": "aegir docs",
    "dep-check": "aegir dep-check",
    "doc-check": "aegir doc-check",
    "build": "aegir build",
    "postbuild": "cp ./test/fixtures/*.tar ./test/fixtures/*.tar.gz ./test/fixtures/*.tgz ./dist/test/fixtures",
    "test": "aegir test -t node",
    "test:node": "npm run test -- -t node --cov",
    "test:electron-main": "npm run test -- -t electron-main",
    "release": "aegir release"
  },
  "dependencies": {
    "iso-constants": "^0.1.2",
    "it-reader": "^6.0.1",
    "it-stream-types": "^2.0.1",
    "it-to-buffer": "^4.0.5",
    "p-defer": "^4.0.0",
    "uint8arraylist": "^2.3.2",
    "uint8arrays": "^5.0.2"
  },
  "devDependencies": {
    "aegir": "^42.2.4",
    "it-pipe": "^3.0.1",
    "stream-to-it": "^0.2.0"
  },
  "engines": {
    "node": ">=16.0.0",
    "npm": ">=7.0.0"
  }
}
