-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.75 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
86
87
88
89
90
91
92
93
94
95
{
"name": "use-hookit",
"version": "1.2.8",
"description": "useHookit is a collection of useful custom React Hooks designed to boost your development productivity. It helps you build faster and more efficiently by providing reusable hooks for common UI patterns and complex logic.",
"typesVersions": {
"*": {
"*": [
"./dist/src/*.d.ts"
]
}
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
},
"./ui": {
"types": "./dist/src/ui/index.d.ts",
"import": "./dist/ui.es.js",
"require": "./dist/ui.cjs.js"
},
"./utility": {
"types": "./dist/src/utility/index.d.ts",
"import": "./dist/utility.es.js",
"require": "./dist/utility.cjs.js"
},
"./lifecycle": {
"types": "./dist/src/lifecycle/index.d.ts",
"import": "./dist/lifecycle.es.js",
"require": "./dist/lifecycle.cjs.js"
},
"./performance": {
"types": "./dist/src/performance/index.d.ts",
"import": "./dist/performance.es.js",
"require": "./dist/performance.cjs.js"
},
"./storage": {
"types": "./dist/src/storage/index.d.ts",
"import": "./dist/storage.es.js",
"require": "./dist/storage.cjs.js"
}
},
"peerDependencies": {
"react": ">=18.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/testing-library__jest-dom": "^6.0.0",
"jsdom": "^26.1.0",
"typescript": "^5.0.0",
"vite": "^7.0.0",
"vitest": "^3.2.4"
},
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly --declaration --outDir dist",
"build:storybook": "cd storybook && pnpm install && pnpm run build-storybook",
"publish:lib": "pnpm build && npm publish --access public",
"publish:dry": "pnpm build && npm publish --dry-run",
"test": "vitest run --environment jsdom --globals",
"test:watch": "vitest run --watch --environment jsdom --globals ",
"storybook": "pnpm --filter ./storybook storybook",
"build-storybook": "pnpm --filter ./storybook build-storybook",
"release:patch": "npm version patch && git push origin main --tags",
"release:minor": "npm version minor && git push origin main --tags",
"release:major": "npm version major && git push origin main --tags",
"deploy": "pnpm test && pnpm build && pnpm publish:lib"
},
"repository": {
"type": "git",
"url": "https://github.com/gangnamssal/useHookit.git"
},
"keywords": [
"react",
"hooks",
"library",
"useHookit",
"use-hookit"
],
"author": "24691116@naver.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/gangnamssal/useHookit/issues"
},
"homepage": "https://use-hookit.vercel.app/",
"storybook": {
"url": "https://use-hookit.vercel.app/"
}
}