-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "react-hook-recaptcha-v2",
"version": "2.0.0",
"description": "react-hook with built-in recaptcha-v2",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "run-s remove tsc",
"tsc": "tsc",
"remove": "rimraf ./dist"
},
"keywords": [
"react",
"hook",
"recaptcha",
"v2"
],
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/underground0930/react-hook-recaptcha-v2"
},
"bugs": {
"url": "https://github.com/underground0930/react-hook-recaptcha-v2/issues"
},
"homepage": "https://github.com/underground0930/react-hook-recaptcha-v2#readme.md",
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"rimraf": "^4.4.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/grecaptcha": "^3.0.4",
"@types/react": "^18.0.33",
"react": "^18.2.0"
}
}