{
	"name": "astro-font-loader",
	"description": "Astro integration for loading fonts into build artifacts with configurable output paths and media query-based conditional preloading.",
	"author": "Mikey Sleevi <development@frogman.simplelogin.com>",
	"license": "MIT",
	"type": "module",
	"version": "0.3.2",
	"engines": {
		"node": ">=18.0.0"
	},
	"main": "./dist/index.js",
	"module": "./dist/index.js",
	"types": "./dist/index.d.ts",
	"exports": {
		".": {
			"types": "./dist/index.d.ts",
			"import": "./dist/index.js",
			"default": "./dist/index.js"
		},
		"./FontLoader.astro": "./components/FontLoader.astro"
	},
	"sideEffects": false,
	"files": [
		"dist",
		"components"
	],
	"keywords": [
		"astro-component",
		"astro-loader",
		"astro",
		"font",
		"fonts",
		"optimization",
		"perf",
		"performance",
		"plugin"
	],
	"homepage": "https://github.com/iveelsm/astro-font-loader#readme",
	"bugs": {
		"url": "https://github.com/iveelsm/astro-font-loader/issues"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/iveelsm/astro-font-loader.git"
	},
	"scripts": {
		"build": "tsc",
		"test": "node --import tsx --test tests/**/*.test.ts",
		"lint": "prettier --check . && eslint .",
		"lint:fix": "prettier --write . && eslint . --fix",
		"clean": "rm -rf dist"
	},
	"devDependencies": {
		"@eslint/js": "^10.0.0",
		"@tsconfig/recommended": "^1.0.13",
		"@types/node": "^25.2.0",
		"@typescript-eslint/eslint-plugin": "^8.54.0",
		"@typescript-eslint/parser": "^8.54.0",
		"astro": "^6.0.0",
		"eslint": "^10.0.0",
		"eslint-plugin-perfectionist": "^5.4.0",
		"prettier": "^3.8.1",
		"tsx": "^4.21.0",
		"typescript": "^6.0.0",
		"typescript-eslint": "^8.54.0"
	}
}
