1
mirror of https://github.com/jakejarvis/imagemoji.git synced 2025-06-27 17:55:40 -04:00
Files
imagemoji/package.json
dependabot[bot] 36873466fe 📦 npm: Bump typescript from 4.4.4 to 4.9.4
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.4.4 to 4.9.4.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v4.4.4...v4.9.4)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-08 07:06:56 +00:00

50 lines
1.2 KiB
JSON

{
"name": "imagemoji",
"version": "0.1.4",
"description": "🖼️ Replaces emojis in strings or DOM nodes with corresponding images",
"license": "MIT",
"repository": "jakejarvis/imagemoji",
"author": {
"name": "Jake Jarvis",
"email": "jake@jarv.is",
"url": "https://jarv.is/"
},
"type": "module",
"files": [
"dist"
],
"source": "./src/imagemoji.ts",
"main": "./dist/imagemoji.cjs",
"module": "./dist/imagemoji.esm.js",
"unpkg": "./dist/imagemoji.min.js",
"exports": {
"require": "./dist/imagemoji.cjs",
"import": "./dist/imagemoji.esm.js",
"browser": "./dist/imagemoji.min.js"
},
"types": "./dist/imagemoji.d.ts",
"scripts": {
"build": "microbundle --format cjs,esm,umd",
"test": "eslint .",
"prepublishOnly": "yarn build"
},
"dependencies": {},
"devDependencies": {
"@jakejarvis/eslint-config": "*",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"microbundle": "^0.14.1",
"twemoji-parser": "13.1.0",
"typescript": "^4.9.4"
},
"keywords": [
"front-end",
"emoji",
"twemoji",
"html",
"dom",
"unicode"
]
}