-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.04 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "rn-country-select",
"version": "0.5.2",
"description": "🌍 React Native country picker with flags, search, TypeScript, i18n, and offline support. Lightweight, customizable, and designed with a modern UI.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"react-native": "lib/index.tsx",
"source": "lib/index.tsx",
"exports": {
".": {
"types": "./dist/index.d.ts",
"react-native": "./lib/index.tsx",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"lib",
"dist",
"README.md",
"LICENSE.md"
],
"scripts": {
"split-countries": "node scripts/split-countries.js",
"build": "tsup",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run build"
},
"keywords": [
"react-native-country-picker",
"rn-country-select",
"react-native-country-codes",
"country-picker",
"country-select",
"country-selector",
"country-list",
"phone-codes",
"internationalization",
"i18n",
"flags",
"typescript",
"offline-support",
"customizable",
"modern-ui",
"android",
"ios",
"cross-platform",
"react native country picker",
"react native country select"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AstrOOnauta/react-native-country-select.git"
},
"author": "AstrOOnauta (https://github.com/AstrOOnauta)",
"license": "ISC",
"bugs": {
"url": "https://github.com/AstrOOnauta/react-native-country-select/issues"
},
"homepage": "https://github.com/AstrOOnauta/react-native-country-select#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-native": ">=0.65.0",
"react-native-safe-area-context": ">=4.0.0"
},
"devDependencies": {
"@types/react": "^18.0.0",
"react": "^18.2.0",
"react-native": "^0.71.0",
"tsup": "^8.0.0",
"typescript": "^5.4.0"
}
}