forked from Le0Developer/react-turnstile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 812 Bytes
/
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
{
"name": "react-turnstile",
"version": "1.1.2",
"description": "React library for Cloudflare's Turnstile CAPTCHA alternative",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"style-fix": "npx prettier -w ."
},
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Le0developer/react-turnstile"
},
"peerDependencies": {
"react": ">= 17.0.0",
"react-dom": ">= 17.0.0"
},
"author": "Leo Developer",
"license": "MIT",
"devDependencies": {
"@types/react": "^18.0.21",
"prettier": "^2.7.1",
"turnstile-types": "^1.1.3",
"typescript": "^4.8.4"
}
}