forked from devfolioco/react-otp-input
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.36 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
{
"name": "reactjs-otp-input",
"version": "2.0.10",
"description": "A fully customizable, one-time password input component for the web built with React",
"scripts": {
"build": "rollup -c",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"prepublishOnly": "npm run build",
"release": "bumpp",
"verify-commit": "verify-commit-msg",
"prepare": "git-scm-hooks"
},
"keywords": [
"nextjs",
"next otp",
"otp",
"input",
"code",
"passcode",
"component",
"react",
"reactjs",
"iphone",
"autofill"
],
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.25.0",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^8.5.0",
"@types/node": "^20.2.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-loader": "^8.3.0",
"bumpp": "^9.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-unicorn": "^43.0.2",
"git-scm-hooks": "^0.0.11",
"prettier": "^2.8.8",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"typescript": "^4.9.5",
"verify-commit-msg": "^0.0.14"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"author": "hunghg255",
"license": "ISC",
"homepage": "https://reactjs-otp-input-demo.vercel.app/",
"repository": {
"type": "git",
"url": "https://github.com/hunghg255/reactjs-otp-input"
},
"bugs": {
"url": "https://github.com/hunghg255/reactjs-otp-input/issues"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"git-hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run verify-commit"
}
}