-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.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
{
"name": "react-checkbox-hook",
"version": "1.0.13",
"author": "Rostyslav Behei <rostyk.begey@gmail.com>",
"repository": "rostyk-begey/react-checkbox-hook",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"description": "A React hook to easily work with checkboxes",
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"files": [
"README.md",
"CHANGELOG.md",
"dist"
],
"keywords": [
"frontend",
"react",
"react-hook",
"hook",
"checkbox"
],
"lint-staged": {
"**/*.{ts,tsx}": "eslint --cache"
},
"scripts": {
"lint": "eslint ./src --cache",
"test": "vitest",
"test:watch": "vitest --watch",
"build": "tsup src/index.tsx --format cjs,esm --dts --minify --clean --out-dir dist",
"prepare": "husky install",
"predeploy": "cd example && bun install && bun run build",
"deploy": "gh-pages -d example/dist"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.48",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^6.1.1",
"husky": "^8.0.3",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"react-test-renderer": "^18.2.0",
"semantic-release": "^23.0.0",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
},
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"src/**/*.{ts,tsx}",
"!**/*.d.ts",
"!**/node_modules/**"
]
}