package.json 477 B

12345678910111213141516171819202122
  1. {
  2. "name": "@growi/emoji-mart-data",
  3. "version": "1.0.0",
  4. "description": "Extracted emoji-mart native lookup data for GROWI",
  5. "license": "MIT",
  6. "private": "true",
  7. "type": "module",
  8. "exports": {
  9. ".": {
  10. "types": "./dist/index.d.ts",
  11. "default": "./dist/index.js"
  12. }
  13. },
  14. "scripts": {
  15. "build": "node bin/extract.ts",
  16. "dev": "node bin/extract.ts",
  17. "lint": "biome check"
  18. },
  19. "devDependencies": {
  20. "@emoji-mart/data": "^1.2.1"
  21. }
  22. }