-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.95 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.95 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
{
"name": "@yeskunall/react-hooks",
"version": "0.0.0",
"description": "A set of React hooks to get hooked on",
"homepage": "https://github.com/yeskunall/react-hooks#readme",
"bugs": {
"url": "https://github.com/yeskunall/react-hooks#issues"
},
"repository": "yeskunall/react-hooks",
"license": "MIT",
"author": {
"name": "Kunall Banerjee",
"email": "hey@kunall.dev",
"url": "https://kunall.dev"
},
"sideEffects": false,
"type": "module",
"exports": {
".": "./dist/hooks/index.mjs"
},
"types": "./dist/hooks/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint --max-warnings 0 .",
"prepublishOnly": "pnpm run build",
"registry:build": "tsx --tsconfig tsconfig.scripts.json ./scripts/build-registry.ts",
"test": "vitest"
},
"devDependencies": {
"@antfu/eslint-config": "5.4.1",
"@eslint/js": "9.36.0",
"@next/eslint-plugin-next": "15.5.4",
"@sinonjs/fake-timers": "14.0.0",
"@stylistic/eslint-plugin": "5.4.0",
"@testing-library/dom": "10.4.1",
"@testing-library/react": "16.3.0",
"@types/react": "19.2.0",
"@types/react-dom": "19.2.0",
"@types/sinonjs__fake-timers": "8.1.5",
"@typescript-eslint/parser": "8.45.0",
"@vitejs/plugin-react": "5.0.4",
"eslint": "9.36.0",
"eslint-config-next": "15.5.4",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"globals": "16.4.0",
"jiti": "2.6.1",
"jsdom": "26.1.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"shadcn": "2.9.3-canary.0",
"tsx": "4.20.6",
"typescript": "5.9.3",
"typescript-eslint": "8.45.0",
"unbuild": "3.6.1",
"vitest": "3.2.4",
"zod": "4.1.11"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"packageManager": "pnpm@9.15.6"
}