{
  "name": "@fluentui-emoji/svg",
  "version": "2.2.0",
  "description": "Fluent UI Emoji as optimized SVGs (flat, high-contrast, modern) with typed metadata. Successor of the fluentui-emoji package.",
  "keywords": [
    "fluentui",
    "emoji",
    "fluentui-emoji",
    "icons",
    "svg"
  ],
  "license": "MIT",
  "author": {
    "name": "Mohammad Abu Mattar",
    "email": "mohammad.khaled@outlook.com",
    "url": "https://mkabumattar.github.io/"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/MKAbuMattar/fluentui-emoji.git",
    "directory": "packages/svg"
  },
  "bugs": {
    "url": "https://github.com/MKAbuMattar/fluentui-emoji/issues"
  },
  "homepage": "https://fluentui-emoji.mkabumattar.com/",
  "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"
      }
    },
    "./metadata.json": "./metadata.json",
    "./icons/*": "./icons/*",
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "icons",
    "metadata.json"
  ],
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "tsup": "^8.5.0",
    "tsx": "^4.23.12",
    "typescript": "^5.9.3"
  },
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "tsx build.ts && tsup src/index.ts --format esm,cjs --dts --clean",
    "test": "tsx test/smoke.ts"
  }
}