-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.03 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "google-captcha-hook",
"description": "Minimal Invisible google reacaptcha for react ✨",
"version": "1.0.4",
"author": "yaviskokakola",
"license": "MIT",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/yaviskokakola/google-captcha-hook"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"{src,tests}/**/*.+(ts|js|tsx)\"",
"lint:fix": "yarn lint --fix && prettier --write .",
"prepare": "husky install",
"commit": "cz",
"release": "bun run build && yarn release-it"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"lint-staged": {
"./{src,tests}/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix"
],
"*": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"release-it": {
"git": {
"commitMessage": "chore(release): v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": true
}
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@babel/core": "7.21.3",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@commitlint/cli": "17.4.4",
"@commitlint/config-conventional": "17.4.4",
"@ryansonshine/commitizen": "4.2.8",
"@ryansonshine/cz-conventional-changelog": "3.3.4",
"@types/node": "18.15.3",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/react-test-renderer": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"@vitejs/plugin-react": "3.1.0",
"autoprefixer": "^10.4.16",
"babel-loader": "9.1.2",
"concurrently": "7.6.0",
"eslint": "8.36.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.12",
"eslint-plugin-typescript-sort-keys": "2.3.0",
"eslint-plugin-unused-imports": "2.0.0",
"husky": "8.0.3",
"jsdom": "21.1.1",
"lint-staged": "13.2.0",
"prettier": "2.8.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-test-renderer": "18.2.0",
"release-it": "15.9.0",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"tsup": "6.6.3",
"typescript": "5.0.2",
"yalc": "1.0.0-pre.53"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"resolutions": {
"glob-parent": ">=5.1.2",
"parse-url": ">=8.1.0",
"trim": ">=0.0.3",
"trim-newlines": ">=3.0.1"
}
}