{
	"name": "@outpacelabs/avatars",
	"version": "0.6.0",
	"description": "React component for generative gradient avatars. Every seed renders a deterministic mesh gradient or a crisp ordered dither, with no stored images.",
	"keywords": [
		"avatars",
		"generative",
		"generative-avatars",
		"gradient",
		"mesh-gradient",
		"ordered-dither",
		"dither",
		"avatar-generator",
		"react",
		"profile-pictures"
	],
	"homepage": "https://avatars.outpacestudios.com",
	"repository": {
		"type": "git",
		"url": "https://github.com/outpacelabs/avatars.git",
		"directory": "packages/avatars"
	},
	"bugs": {
		"url": "https://github.com/outpacelabs/avatars/issues"
	},
	"author": "Outpace Studios (https://outpacestudios.com)",
	"license": "MIT",
	"type": "module",
	"sideEffects": false,
	"main": "./dist/index.cjs",
	"module": "./dist/index.js",
	"types": "./dist/index.d.ts",
	"exports": {
		".": {
			"import": {
				"types": "./dist/index.d.ts",
				"default": "./dist/index.js"
			},
			"require": {
				"types": "./dist/index.d.cts",
				"default": "./dist/index.cjs"
			}
		},
		"./package.json": "./package.json"
	},
	"files": [
		"dist",
		"README.md",
		"LICENSE"
	],
	"scripts": {
		"build": "tsup",
		"test": "node test/properties.mjs",
		"dev": "tsup --watch",
		"typecheck": "tsc --noEmit",
		"prepublishOnly": "pnpm build"
	},
	"peerDependencies": {
		"react": ">=18"
	},
	"devDependencies": {
		"@types/react": "^19.2.10",
		"react": "^19.2.4",
		"tsup": "^8.3.5",
		"typescript": "^5.9.3"
	},
	"publishConfig": {
		"access": "public",
		"registry": "https://registry.npmjs.org/"
	}
}
