-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 1.9 KB
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": [
"browser",
"hook",
"react",
"react-hook",
"ssr"
],
"bugs": {
"url": "https://github.com/react-hookz/web/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/react-hookz/web.git"
},
"files": [
"./dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json",
"./*.js": "./dist/*.js",
"./*": "./dist/*/index.js",
"./*/": "./dist/*/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp run build:clean && tsc --version && tsc --project ./tsconfig.build.json",
"build:clean": "rimraf ./dist",
"fmt": "vp fmt --write",
"fmt:check": "vp fmt --check",
"lint": "vp lint",
"lint:fix": "vp lint --fix",
"test": "vp test --run",
"test:coverage": "vp test --run --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ver0/deep-equal": "^2.0.1"
},
"devDependencies": {
"@types/js-cookie": "^3.0.6",
"@types/node": "^26.1.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@ver0/oxlint-config": "^2.0.2",
"@ver0/react-hooks-testing": "^1.0.3",
"@vitest/coverage-v8": "^4.1.10",
"js-cookie": "^3.0.8",
"jsdom": "^30.0.0",
"oxlint": "^1.76.0",
"oxlint-tsgolint": "^7.0.2001",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.8",
"typescript": "^7.0.2",
"vite-plus": "^0.2.6",
"vitest": "^4.1.10"
},
"peerDependencies": {
"js-cookie": "^3.0.5",
"react": "^16.8 || ^17 || ^18 || ^19",
"react-dom": "^16.8 || ^17 || ^18 || ^19"
},
"peerDependenciesMeta": {
"js-cookie": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "yarn@4.17.1"
}