-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.71 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
{
"engines": {
"node": ">= 16.0.0"
},
"name": "react-grecaptcha-v3",
"version": "0.4.5",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RevoTale/react-grecaptcha-v3.git"
},
"scripts": {
"test": "jest --no-watchman && tsc --noEmit && pnpm lint",
"build": "gbuild . && tsc",
"lint": "eslint ./ && prettier --cache --check .",
"fix": "eslint ./ --fix && prettier --cache --write --list-different .",
"prepare": "pnpm build",
"changeset:version": "changeset version && git add --all",
"changeset:publish": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@testing-library/react": "^16.1.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.6",
"@types/react": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"grisaia-package-builder": "^0.1.13",
"jest": "^29.7.0",
"jest-docblock": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.0.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-test-renderer": "^19.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"eslint-config-love": "^114.0.0"
},
"keywords": [
"react",
"google",
"recaptcha",
"v3",
"captcha",
"invisible",
"nextjs"
],
"author": {
"name": "l-you",
"email": "l-you@revotale.com",
"url": "https://github.com/l-you"
},
"bugs": {
"url": "https://github.com/RevoTale/react-grecaptcha-v3/issues"
},
"homepage": "https://github.com/RevoTale/react-grecaptcha-v3",
"peerDependencies": {
"react": ">=18.0",
"react-dom": ">=18.0"
},
"main": "./src/index.ts",
"private": false,
"sideEffects": false,
"publishConfig": {
"directory": "dist",
"module": "./index.js",
"main": "./index.cjs",
"types": "./index.d.ts",
"access": "public",
"provenance": true,
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs",
"types": "./index.d.ts"
}
}
},
"type": "module",
"packageManager": "pnpm@8.6.2",
"description": "Google Recaptcha V3 for React.js based application. Keep website performance high while prioritizing security."
}