@clutchd/avatar
Version:
A basic avatar component powered by next/image.
47 lines • 1.13 kB
JSON
{
"name": "@clutchd/avatar",
"version": "7.0.0",
"keywords": [
"clutchd",
"avatar",
"tailwind",
"next"
],
"bugs": {
"url": "https://github.com/clutchd/clutchd/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clutchd/clutchd.git",
"directory": "packages/avatar"
},
"author": "Clutchd, LLC",
"sideEffects": false,
"type": "module",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.tsx --format esm --dts --minify",
"dev": "tsup src/index.tsx --format esm --dts --watch",
"prepublish": "bun run build",
"test": "bun test --coverage --coverage-reporter=lcov"
},
"dependencies": {
"@clutchd/image": "3.0.0",
"@radix-ui/react-primitive": "2.0.1"
},
"devDependencies": {
"@clutchd/tsconfig": "3.0.0",
"@types/node": "22.10.2",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"next": "15.1.1",
"react": "19.0.0",
"tsup": "8.3.5"
},
"peerDependencies": {
"next": "^15.0",
"react": "^19.0"
}
}