This repository was archived by the owner on Jan 19, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.95 KB
/
package.json
File metadata and controls
76 lines (76 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
71
72
73
74
75
76
{
"name": "gitbeaker-hooks",
"version": "0.2.1",
"description": "React Hooks library for Gitbeaker.",
"keywords": [
"react",
"hooks",
"gitlab",
"gitbeaker"
],
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build --emptyOutDir false",
"preview": "vite preview",
"prepare": "husky install",
"test": "VITEST_MIN_THREADS=6 VITEST_MAX_THREADS=6 vitest run --passWithNoTests",
"coverage": "vitest run --coverage",
"format": "npx prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryohidaka/gitbeaker-hooks.git"
},
"author": "ryohidaka",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryohidaka/gitbeaker-hooks/issues"
},
"homepage": "https://github.com/ryohidaka/gitbeaker-hooks#readme",
"dependencies": {
"@gitbeaker/rest": "^40.0.2",
"swr": "^2.2.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.5.2",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react-swc": "^3.6.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.4.0",
"eslint-plugin-react-refresh": "^0.4.6",
"happy-dom": "^15.7.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.3.3",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-dts": "^4.1.0",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.0.5"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}