-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
113 lines (113 loc) · 2.99 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "mui-tel-input",
"description": "A phone number input designed for the React library MUI built with libphonenumber-js",
"author": "Victor de la Fouchardiere <victor.delafouchardiere@gmail.com> (https://github.com/viclafouch)",
"license": "MIT",
"bugs": {
"url": "https://github.com/viclafouch/mui-tel-input/issues"
},
"homepage": "https://viclafouch.github.io/mui-tel-input",
"version": "7.0.0",
"files": [
"dist"
],
"main": "./dist/mui-tel-input.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/mui-tel-input.es.js",
"types": "./dist/index.d.ts",
"default": "./dist/mui-tel-input.es.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/viclafouch/mui-tel-input.git"
},
"keywords": [
"react",
"phone",
"typescript",
"format",
"number",
"input",
"telephone",
"mui",
"javascript",
"tel",
"material"
],
"scripts": {
"build": "vite build",
"lint": "tsc && eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"release": "standard-version",
"coverage": "vitest run --coverage",
"prepare": "husky"
},
"standard-version": {
"scripts": {
"prerelease": "npm run build"
},
"skip": {
"changelog": true
}
},
"sideEffects": false,
"peerDependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/material": "^6.0.0",
"@types/react": "^18.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"dependencies": {
"@types/node": "^22.9.0",
"libphonenumber-js": "^1.11.14"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/material": "^6.1.6",
"@storybook/addon-actions": "^8.4.2",
"@storybook/addon-essentials": "^8.4.2",
"@storybook/addon-interactions": "^8.4.2",
"@storybook/addon-links": "^8.4.2",
"@storybook/react": "^8.4.2",
"@storybook/react-vite": "^8.4.2",
"@storybook/test": "^8.4.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@viclafouch/eslint-config-viclafouch": "^4.16.0",
"@vitejs/plugin-react": "^4.3.3",
"babel-loader": "^9.2.1",
"eslint": "^8.56.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"standard-version": "^9.5.0",
"storybook": "^8.4.2",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-aliases": "^0.11.7",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.4"
}
}