{
	"name": "@mjba/lyrics",
	"version": "1.3.0",
	"description": "A TypeScript library for fetching song lyrics from Musixmatch",
	"main": "dist/index.cjs",
	"module": "dist/index.mjs",
	"types": "dist/index.d.mts",
	"exports": {
		".": {
			"types": "./dist/index.d.mts",
			"import": "./dist/index.mjs",
			"require": "./dist/index.cjs"
		}
	},
	"type": "module",
	"scripts": {
		"build": "tsdown",
		"build:watch": "tsdown --watch",
		"dev": "tsdown --watch",
		"test": "bun test",
		"lint": "tsc --noEmit && biome check --write ./src",
		"format": "biome check --write ./src ./examples",
		"prepublishOnly": "bun run build"
	},
	"lint-staged": {
		"*.ts": [
			"bun format",
			"typedoc src/index.ts --plugin typedoc-material-theme"
		]
	},
	"keywords": [
		"lyrics",
		"music",
		"musixmatch",
		"songs",
		"typescript",
		"isrc"
	],
	"author": "iaMJ",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "https://github.com/idMJA/Lyrics.git"
	},
	"bugs": {
		"url": "https://github.com/idMJA/Lyrics/issues"
	},
	"homepage": "https://github.com/idMJA/Lyrics#readme",
	"dependencies": {
		"fetch-cookie": "^3.2.0",
		"ky": "^2.0.2"
	},
	"devDependencies": {
		"@biomejs/biome": "^2.5.1",
		"@types/bun": "latest",
		"@types/node": "^26.0.1",
		"husky": "^9.1.7",
		"lint-staged": "^17.0.8",
		"tsdown": "^0.22.3",
		"typedoc": "^0.28.19",
		"typedoc-material-theme": "^1.4.1"
	},
	"peerDependencies": {
		"typescript": "^6"
	},
	"engines": {
		"node": ">=16.0.0"
	},
	"files": [
		"dist/**/*",
		"README.md",
		"LICENSE"
	]
}
