-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
108 lines (108 loc) · 2.93 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
{
"name": "mui-one-time-password-input",
"description": "A One-Time Password input designed for the React library MUI",
"author": "Victor de la Fouchardiere <[email protected]> (https://github.com/viclafouch)",
"license": "MIT",
"bugs": {
"url": "https://github.com/viclafouch/mui-otp-input/issues"
},
"homepage": "https://viclafouch.github.io/mui-otp-input",
"version": "3.0.2",
"files": [
"dist"
],
"main": "./dist/mui-one-time-password-input.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/mui-one-time-password-input.es.js",
"default": "./dist/mui-one-time-password-input.es.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/viclafouch/mui-otp-input.git"
},
"keywords": [
"react",
"typescript",
"input",
"mui",
"javascript",
"material",
"otp",
"form",
"password"
],
"scripts": {
"build": "pnpm lint && pnpm test -- run && vite build",
"lint": "npx tsc --noEmit && eslint",
"lint:fix": "pnpm 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
}
},
"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": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/material": "^6.2.0",
"@types/react": "^18.3.12",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@storybook/addon-actions": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/material": "^6.2.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.2",
"@viclafouch/eslint-config-viclafouch": "4.17.1-beta.8",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"standard-version": "^9.5.0",
"storybook": "^8.4.7",
"typescript": "^5.7.2",
"vite": "^5.4.10",
"vite-aliases": "^0.11.7",
"vite-plugin-dts": "^4.3.0",
"vitest": "^2.1.8"
}
}