-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.03 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
67
68
69
70
71
72
73
74
75
76
77
{
"version": "0.1.5",
"name": "mui-phone-input",
"description": "Advanced, highly customizable phone input component for Material UI.",
"keywords": [
"mui",
"react",
"phone",
"input",
"number",
"material",
"advanced",
"component",
"material-ui",
"customizable",
"phone-number"
],
"homepage": "https://github.com/typesnippet/mui-phone-input",
"bugs": {
"url": "https://github.com/typesnippet/mui-phone-input/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/typesnippet/mui-phone-input"
},
"files": [
"joy",
"base",
"core",
"index*",
"types*",
"styles*",
"locale*",
"LICENSE",
"resources",
"README.md"
],
"scripts": {
"rename": "bash -c 'for file in *.js; do mv $file \"${file%.js}.$0.js\"; done'",
"build": "tsc --module commonjs && npm run rename -- cjs && tsc --declaration",
"prebuild": "rm -r joy base core resources index* locale* types* styles* || true",
"postpack": "tsx scripts/prepare-package.ts && mv babel.config.cjs.js babel.config.js",
"test": "jest --config jestconfig.json",
"postbuild": "cp -r src/resources ."
},
"license": "MIT",
"peerDependencies": {
"react": "^16.8.6 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"react-phone-hooks": "^0.1.14"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@emotion/styled": "^11.13.0",
"@emotion/react": "^11.13.3",
"@material-ui/core": "^4.0.0",
"@mui/base": "^5.0.0-beta.29",
"@mui/joy": "^5.0.0-beta.18",
"@mui/material": "^5.0.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.11",
"@types/react": "^17.0.71",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-hook-form": "^7.49.2",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"tsx": "^3.12.10",
"typescript": "^5.2.2"
}
}