package.json 536 B

123456789101112131415161718192021222324
  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. "main": "./dist/index.js",
  9. "types": "./dist/index.d.ts",
  10. "exports": {
  11. ".": {
  12. "types": "./dist/index.d.ts",
  13. "default": "./dist/index.js"
  14. }
  15. },
  16. "scripts": {
  17. "build": "node bin/extract.ts",
  18. "dev": "node bin/extract.ts",
  19. "lint": "biome check"
  20. },
  21. "devDependencies": {
  22. "@emoji-mart/data": "^1.2.1"
  23. }
  24. }