-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.38 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
{
"name": "@mustapha-ghlissi/react-native-otp",
"version": "1.3.1",
"description": "React Native OTP: One Time Password Input for React Native",
"type": "module",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"typings": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"files": [
"src",
"lib"
],
"scripts": {
"typescript": "tsc --skipLibCheck --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\" --fix",
"check": "yarn typescript && yarn lint",
"build": "rm -rf lib && bob build && yarn copy-dts && yarn delete-dts",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" lib/typescript",
"delete-dts": "find ./lib/commonjs -name '*.d.js*' -delete && find ./lib/module -name '*.d.js*' -delete",
"release": "release-it --no-git.requireCleanWorkingDir"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mustapha-ghlissi/react-native-otp.git"
},
"keywords": [
"react-native",
"react-native-component",
"react-native-otp",
"otp",
"one",
"time",
"password",
"mobile",
"ios",
"android",
"sms",
"web",
"verify"
],
"author": {
"name": "Mustapha GHLISSI",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mustapha-ghlissi/react-native-otp/issues"
},
"homepage": "https://github.com/mustapha-ghlissi/react-native-otp#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@react-native/eslint-config": "^0.74.85",
"@release-it/conventional-changelog": "^8.0.1",
"@types/react": "^18.3.3",
"copyfiles": "^2.4.1",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"react": "^18.2.0",
"react-native": "^0.74.3",
"react-native-builder-bob": "^0.25.0",
"release-it": "^17.6.0",
"typescript": "^5.5.3"
},
"peerDependencies": {
"@types/react": "*",
"react": "*",
"react-native": "*"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
},
"publishConfig": {
"access": "public"
}
}