@metalmind/mm-emoji
Version:
A lightweight, stylable, reusable React emoji picker component inspired by Slack's emoji picker
85 lines (84 loc) • 2.42 kB
JSON
{
"name": "@metalmind/mm-emoji",
"version": "0.1.0",
"description": "A lightweight, stylable, reusable React emoji picker component inspired by Slack's emoji picker",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest --run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run type-check && npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Metalmind-AB/mm_emoji.git"
},
"keywords": [
"react",
"emoji",
"emoji-picker",
"emoji-selector",
"slack",
"typescript",
"component",
"ui"
],
"author": "Metalmind AB",
"license": "MIT",
"bugs": {
"url": "https://github.com/Metalmind-AB/mm_emoji/issues"
},
"homepage": "https://github.com/Metalmind-AB/mm_emoji#readme",
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "^1.0.4",
"eslint": "^8.55.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^23.0.1",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.7.0",
"vitest": "^1.0.4"
},
"dependencies": {
"unicode-emoji-json": "^0.6.0"
}
}