-
-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.84 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.84 KB
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
{
"name": "react-native-confirmation-code-field",
"version": "9.0.0",
"main": "esm/index.js",
"types": "esm/index.d.ts",
"files": [
"esm",
"!__tests__"
],
"scripts": {
"ci": "yarn ts && yarn lint && yarn test && yarn build && yarn size",
"size": "size-limit",
"format": "prettier --write src/*.{js,ts,tsx}",
"test": "jest --coverage --silent",
"lint": "eslint './src/**/*.{js,ts,tsx}' --quiet",
"ts": "tsc --noEmit",
"build": "rm -rf node_modules/@types/react-native && rm -rf esm && tsc --outDir esm && yarn after-build",
"after-build": "prettier --write esm/*.js esm/*.d.ts",
"docs": "yarn doctoc API.md",
"prepublishOnly": "yarn docs && yarn build"
},
"peerDependencies": {
"react": ">=19.0.0",
"react-native": ">=0.78.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-native": {
"optional": true
}
},
"resolutions": {
"@types/jest": "^30.0.0",
"@types/react": "^19.2.14"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@react-native/babel-preset": "^0.84.1",
"@react-native/eslint-config": "^0.84.1",
"@size-limit/preset-app": "^12.0.1",
"@testing-library/react-native": "^13.3.3",
"@tsconfig/react-native": "^3.0.9",
"@types/eslint-plugin-jsx-a11y": "^6.10.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.14",
"@types/react-test-renderer": "^19.1.0",
"babel-plugin-react-compiler": "^1.0.0",
"doctoc": "^2.3.0",
"eslint": "^10.1.0",
"eslint-plugin-jest": "^29.15.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-testing-library": "^7.16.2",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-compiler-runtime": "^1.0.0",
"react-native": "^0.84.1",
"react-native-test-app": "^5.1.0",
"react-test-renderer": "^19.2.4",
"size-limit": "^12.0.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0"
},
"author": "David <4661784+retyui@users.noreply.github.com>",
"description": "A react-native component to input confirmation code for both Android and IOS",
"homepage": "https://github.com/retyui/react-native-confirmation-code-field#readme",
"bugs": "https://github.com/retyui/react-native-confirmation-code-field/issues",
"repository": {
"type": "git",
"url": "https://github.com/retyui/react-native-confirmation-code-field"
},
"license": "MIT",
"keywords": [
"react",
"react-component",
"react-native",
"react-native-component",
"android",
"ios",
"code-input",
"confirmation-code",
"pin-code",
"confirmation-code-input",
"pin-code-input"
],
"packageManager": "yarn@4.13.0"
}