-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.39 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
{
"name": "@ogs-gmbh/react-hooks",
"version": "1.1.0",
"description": "Composable Hooks for React applications.",
"keywords": [
"composition-api",
"custom-hooks",
"frontend",
"functional-components",
"hooks-library",
"lifecycle-management",
"react",
"react-hooks",
"react-performance",
"react-utils",
"reusable-hooks",
"side-effects",
"state-management",
"typescript",
"useCallback",
"useContext",
"useEffect",
"useMemo",
"useRef",
"useState"
],
"license": "MIT",
"author": "OGS GmbH",
"contributors": [
{
"name": "Simon Kovtyk",
"email": "simon@kovtyk.com",
"url": "https://simonkov.dev"
}
],
"type": "module",
"publishConfig": {
"directory": "dist/main"
},
"scripts": {
"ci:build:main:production": "tsdown",
"ci:docs:extract:typedoc": "typedoc",
"ci:docs:main:vitepress": "bash ./.vitepress/scripts/pre-vitepress.sh && vitepress build .vitepress",
"ci:pr:commitlint:main:commitlint": "commitlint",
"ci:pr:lint:main:eslint": "eslint .",
"ci:pr:lint:main:oxlint": "oxlint",
"ci:test:main:vitest": "vitest run --coverage",
"commit": "commit",
"prepare": "husky",
"vitepress": "bash ./.vitepress/scripts/pre-vitepress.sh && vitepress dev .vitepress",
"vitepress:preview": "vitepress preview .vitepress"
},
"dependencies": {
"react": "^19.2.4"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/prompt-cli": "^20.5.0",
"@ogs-gmbh/oxlint-presets": "^1.0.5",
"@ogs-gmbh/rolldown-plugin-assets": "^1.0.1",
"@ogs-gmbh/rolldown-plugin-package-json": "^1.1.0",
"@ogs-gmbh/vitepress-plugin-sidebar": "^1.0.3",
"@ogs-gmbh/vitepress-theme": "^1.1.0",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "4.1.3",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.4.0",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"react-dom": "^19.2.4",
"sass-embedded": "^1.99.0",
"tsdown": "^0.21.7",
"typedoc": "^0.28.18",
"typedoc-plugin-frontmatter": "^1.3.1",
"typedoc-plugin-markdown": "^4.11.0",
"typescript": "^5.9.3",
"vite": "^8.0.7",
"vitepress": "^1.6.4",
"vitepress-plugin-group-icons": "^1.7.3",
"vitest": "^4.1.3"
}
}