{
	"name": "modern-tar",
	"version": "0.7.5",
	"description": "Zero dependency streaming tar parser and writer for JavaScript.",
	"author": "Ayuhito <hello@ayuhito.com>",
	"license": "MIT",
	"type": "module",
	"sideEffects": false,
	"main": "./dist/web/index.js",
	"module": "./dist/web/index.js",
	"types": "./dist/web/index.d.ts",
	"exports": {
		"./package.json": "./package.json",
		".": "./dist/web/index.js",
		"./fs": "./dist/fs/index.js"
	},
	"typesVersions": {
		"*": {
			"fs": [
				"dist/fs/index.d.ts"
			],
			"*": [
				"dist/web/index.d.ts"
			]
		}
	},
	"devDependencies": {
		"@biomejs/biome": "2.3.8",
		"@types/node": "^25.0.2",
		"@vitest/browser-playwright": "4.0.15",
		"@vitest/coverage-v8": "4.0.15",
		"tsdown": "^0.18.0",
		"typescript": "^5.9.3",
		"vitest": "4.0.15"
	},
	"scripts": {
		"build": "tsdown",
		"dev": "tsdown --watch",
		"test": "vitest",
		"coverage": "vitest run --coverage",
		"check": "biome check --write",
		"typecheck": "tsc --noEmit",
		"test:browser": "vitest --config=vitest.browser.config.ts --browser"
	},
	"files": [
		"dist",
		"README.md"
	],
	"homepage": "https://github.com/ayuhito/modern-tar",
	"bugs": {
		"url": "https://github.com/ayuhito/modern-tar/issues"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/ayuhito/modern-tar.git"
	},
	"publishConfig": {
		"access": "public"
	},
	"engines": {
		"node": ">=18.0.0"
	}
}
