-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.56 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.56 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
{
"name": "react-native-turnstile-captcha",
"version": "1.0.6",
"description": "A wrapper for CloudFlare Turnstile for use in React Native apps.",
"repository": {
"type": "git",
"url": "git+https://github.com/fbele/react-native-turnstile-captcha.git"
},
"types": "dist",
"main": "dist",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup",
"dev": "tsup src --format cjs,esm --watch",
"pub": "node scripts/publish.js"
},
"files": [
"dist/**/*.js*",
"dist/**/*.mjs*",
"dist/**/*.d*"
],
"keywords": [
"cloudflare",
"turnstile",
"react",
"native",
"react native",
"captcha"
],
"author": {
"name": "Franc Bele",
"email": "franc@belteq.com"
},
"license": "MIT",
"peerDependencies": {
"react": ">=18.0",
"react-native": ">=0.74",
"react-native-webview": ">=13.8.6"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/runtime": "^7.28.6",
"@react-native-community/eslint-config": "^3.2.0",
"@react-native/babel-preset": "^0.83.1",
"@tsconfig/react-native": "^3.0.9",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.13",
"@types/react-test-renderer": "^19.1.0",
"babel-jest": "^30.2.0",
"eslint": "^9.39.2",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-native": "^0.83.1",
"react-native-webview": "^13.16.0",
"react-test-renderer": "^19.2.4",
"tsup": "^8.5.1",
"turnstile-types": "^1.2.3",
"typescript": "^5.9.3"
}
}