-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.08 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
{
"name": "mui-phone-textfield",
"version": "5.0.0-pre-release.1",
"description": "A phone number input for Material-UI.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"dev": "rimraf dist && rollup -c --bundleConfigAsCjs --watch",
"build": "rimraf dist && rollup -c --bundleConfigAsCjs",
"prepare": "husky install && node src/generate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/recursive-beast/mui-phone-textfield.git"
},
"keywords": [
"phone",
"input",
"textfield",
"material-ui",
"mui",
"react",
"material design",
"component"
],
"author": {
"name": "Soufiane Yakoubi",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/recursive-beast/mui-phone-textfield/issues"
},
"homepage": "https://github.com/recursive-beast/mui-phone-textfield#readme",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.5",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/prop-types": "^15.7.5",
"@types/react-dom": "^18.2.7",
"axios": "^1.4.0",
"husky": "^8.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^3.28.0",
"semantic-release": "^21.0.7",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.5",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"dependencies": {
"libphonenumber-js": "^1.10.41",
"prop-types": "^15.8.1",
"tslib": "^2.6.1"
}
}