-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 978 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 978 Bytes
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
{
"name": "@makozi/react-input-otp",
"version": "1.0.0",
"description": "A stylized OTP (One Time Password) input field component for React with auto focus, paste support, and accessibility.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "rollup -c"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/react-transition-group": "^4.4.12",
"rollup": "^4.46.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.8.3"
},
"author": "Makozi Marizu-Ibewiro",
"license": "MIT",
"keywords": [
"react",
"otp",
"input",
"authentication",
"verification",
"react-component"
]
}