-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.44 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.44 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
{
"name": "react-phonebox",
"version": "2.0.5",
"author": "Furkan Genc",
"description": "A customizable phone input component with built-in multi-language support.",
"license": "MIT",
"keywords": [
"phone",
"phone input",
"react phone input",
"intl phone input",
"phonebox",
"react phonebox",
"i18n react phone",
"country selector",
"react",
"phone number validation",
"react libphonenumber",
"libphonenumber"
],
"repository": {
"type": "git",
"url": "https://github.com/frkngnc/react-phonebox.git"
},
"bugs": {
"url": "https://github.com/frkngnc/react-phonebox/issues"
},
"homepage": "https://frkngnc.github.io/react-phonebox",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "vite build"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"libphonenumber-js": "^1.12.9"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"devDependencies": {
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^4.0.0",
"typescript": "^5.0.0",
"vite": "^4.5.0"
}
}