-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
93 lines (93 loc) · 2.22 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
{
"name": "go-captcha-react",
"version": "1.0.0",
"license": "MIT",
"private": false,
"email": "[email protected]",
"author": "Awen <[email protected]>",
"description": "This is the react package for go-captcha",
"keywords": [
"go-captcha-react",
"go-captcha",
"gocaptcha",
"captcha-react",
"react-captcha",
"capts",
"gocapts"
],
"bugs": {
"url": "https://github.com/wenlng/go-captcha-react/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wenlng/go-captcha-react.git"
},
"homepage": "https://github.com/wenlng/go-captcha-react",
"module": "dist/go-captcha-react.esm.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"classnames": "^2.5.1",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@eslint/compat": "^1.0.1",
"@eslint/js": "^9.3.0",
"@testing-library/react": "^15.0.7",
"@types/node": "^16.18.97",
"@types/react-svg": "^5.0.0",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^7.9.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"less": "^4.1.3",
"less-loader": "^12.2.0",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"prettier": "github:prettier/prettier",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svg": "^2.0.0",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.9.5"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=12"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
}
}