-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 816 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "country-flag-emoji-polyfill",
"version": "0.1.4",
"description": "Add country flag emojis to Chromium-based browsers on Windows",
"repository": "https://github.com/talkjs/country-flag-emoji-polyfill",
"author": "Egbert Teeselink",
"license": "MIT",
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"make-font": "./build/make-font.sh"
},
"devDependencies": {
"microbundle": "^0.15.1"
},
"dependencies": {
"is-emoji-supported": "^0.0.5"
}
}