-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathpackage.json
85 lines (85 loc) · 1.92 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
{
"name": "@react-hookz/web",
"version": "24.0.4",
"description": "React hooks done right, for browser and SSR.",
"keywords": [
"react",
"hook",
"react-hook",
"browser",
"ssr"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/react-hookz/web.git"
},
"bugs": {
"url": "https://github.com/react-hookz/web/issues"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": "./dist/index.js",
"./*/": "./dist/*/index.js",
"./*": "./dist/*"
},
"files": [
"./dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"postinstall": "husky",
"build": "yarn build:clean && tsc --version && tsc --project ./tsconfig.build.json",
"build:clean": "yarn rimraf ./dist",
"lint": "eslint --version && eslint",
"lint:fix": "eslint --fix",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage"
},
"dependencies": {
"@react-hookz/deep-equal": "^3.0.1"
},
"peerDependencies": {
"js-cookie": "^3.0.5",
"react": "^16.8 || ^17 || ^18",
"react-dom": "^16.8 || ^17 || ^18"
},
"peerDependenciesMeta": {
"js-cookie": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@react-hookz/eslint-config": "^4.1.6",
"@react-hookz/eslint-formatter-gha": "^3.0.2",
"@testing-library/react-hooks": "^8.0.1",
"@types/js-cookie": "^3.0.6",
"@types/react": "^17.0.83",
"@types/react-dom": "^17.0.26",
"@vitest/coverage-v8": "^2.1.8",
"commitlint": "^19.5.0",
"eslint": "^9.18.0",
"husky": "^9.1.7",
"js-cookie": "^3.0.5",
"jsdom": "^26.0.0",
"lint-staged": "^15.3.0",
"pinst": "^3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.1",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"packageManager": "yarn@4.5.3"
}