UNPKG

@lueur/avatar

Version:

A TypeScript package to generate customizable SVG user avatars.

69 lines (68 loc) 1.98 kB
{ "name": "@lueur/avatar", "version": "0.1.8", "description": "A TypeScript package to generate customizable SVG user avatars.", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "./dist/**", "README.md", "LICENSE" ], "scripts": { "build": "npx tsc", "docs": "typedoc", "docs:preview": "npm run docs && serve docs", "docs:publish": "npm run docs && gh-pages -d docs", "git:commit": "git add . && git commit -m \"Prepublish only\"", "git:push": "git push -u origin main", "prepublishOnly": "npm run git:commit && npm run build && npm version patch && npm run git:push", "publish": "npm publish --access public --tag latest", "publish:alpha": "npm publish --access public --tag alpha", "publish:beta": "npm publish --access public --tag beta", "publish:next": "npm publish --access public --tag next", "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [ "avatar", "svg", "typescript", "user-avatar", "initials", "placeholder" ], "author": { "name": "Lazaro Osee", "email": "lazarooseeofficial@gmail.com", "url": "https://oseelabs.org/" }, "license": "MIT", "bugs": { "url": "https://github.com/oseelabs/lueur-avatar/issues" }, "homepage": "https://oseelabs.github.io/lueur-avatar", "repository": { "url": "https://github.com/oseelabs/lueur-avatar", "directory": ".", "type": "git" }, "contributors": [ { "name": "Lazaro Osee", "email": "stingerdeveloperske@gmail.com", "url": "https://oseelabs.org" } ], "funding": [ "https://ko-fi.com/lazaroodira" ], "devDependencies": { "@types/node": "^24.0.3", "gh-pages": "^6.3.0", "serve": "^14.2.4", "typedoc": "^0.28.5", "typedoc-material-theme": "^1.4.0", "typedoc-plugin-markdown": "^4.7.0", "typescript": "^5.8.3" } }