-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.67 KB
/
package.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "country-flag-emojis",
"version": "1.0.5",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"./types": {
"import": "./dist/esm/lib/types.js",
"require": "./dist/cjs/lib/types.js"
},
"./lookup": {
"import": "./dist/esm/lib/lookup/lookup.js",
"require": "./dist/cjs/lib/lookup/lookup.js"
},
"./flags": {
"import": "./dist/esm/lib/flags/index.js",
"require": "./dist/cjs/lib/flags/index.js"
},
"./errors": {
"import": "./dist/esm/lib/errors/CountryCodeError.js",
"require": "./dist/cjs/lib/errors/CountryCodeError.js"
}
},
"sideEffects": false,
"scripts": {
"watch": "tsc --watch",
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build": "npm run build:esm && npm run build:cjs",
"prepare": "npm run build"
},
"keywords": [
"country",
"flag",
"emoji",
"typescript"
],
"author": "shirudo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shi-rudo/country-flag-emojis.git"
},
"bugs": {
"url": "https://github.com/shi-rudo/country-flag-emojis/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"description": "A TypeScript library providing country flag emojis with metadata.",
"homepage": "https://github.com/shi-rudo/country-flag-emojis#readme",
"devDependencies": {
"typescript": "^5.6.3"
},
"engines": {
"node": ">=14.0.0"
}
}