secure-keypad 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # woori-otp
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // npm 배포용
2
+ export { default as Keypad } from "@/Keypad";
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "secure-keypad",
3
+ "version": "1.0.0",
4
+ "description": "A secure numeric keypad with shuffled keys and anti-spam input protection",
5
+ "main": "dist/index.js",
6
+ "type": "module",
7
+ "scripts": {
8
+ "test": "echo \"Error: no test specified\" && exit 1",
9
+ "dev": "vite",
10
+ "build": "vite build",
11
+ "preview": "vite preview"
12
+ },
13
+ "keywords": [
14
+ "react",
15
+ "secure",
16
+ "security",
17
+ "keypad",
18
+ "vite",
19
+ "numeric-keypad",
20
+ "secure-input",
21
+ "shuffle",
22
+ "random",
23
+ "ui-component",
24
+ "bank"
25
+ ],
26
+ "files": [
27
+ "dist"
28
+ ],
29
+ "contributors": [
30
+ "eun <hae22012@gmail.com>",
31
+ "sun <gmhie1208@gmail.com>",
32
+ "jyu <jiwoo061@gmail.com>",
33
+ "khmandarrin <6kiesby28@gmail.com>"
34
+ ],
35
+ "license": "MIT",
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "https://github.com/nnyouung/secure-keypad.git"
39
+ },
40
+ "bugs": {
41
+ "url": "https://github.com/nnyouung/secure-keypad/issues"
42
+ },
43
+ "peerDependencies": {
44
+ "react": ">=16.8",
45
+ "react-dom": ">=16.8"
46
+ },
47
+ "devDependencies": {
48
+ "react": "^18.2.0",
49
+ "react-dom": "^18.2.0",
50
+ "@vitejs/plugin-react": "^5.1.2",
51
+ "vite": "^7.3.1"
52
+ }
53
+ }