-
-
Notifications
You must be signed in to change notification settings - Fork 319
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.24 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.24 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
{
"name": "gitbeaker",
"type": "module",
"private": true,
"repository": "github:jdalrymple/gitbeaker",
"bugs": {
"url": "https://github.com/jdalrymple/gitbeaker/issues"
},
"author": "Justin Dalrymple",
"pnpm": {
"overrides": {
"lodash": ">=4.18.1",
"tar": "^7.5.13",
"undici": ">=8.0.2"
},
"ignoredBuiltDependencies": [
"nx"
]
},
"scripts": {
"build": "nx run-many --target=build",
"lint": "nx run-many --target=lint",
"lint:fix": "nx run-many --target=lint:fix",
"clean": "pnpm dlx rimraf --glob '**/{tmp,dist,node_modules,coverage,reports,.nx}'",
"format:docs": "prettier './**/(*.json|*.yml|*.md|*.(c|m)js|*.(c|m)ts)' --ignore-path ./.prettierignore --config ./prettier.config.mjs --check ",
"format:src": "prettier '**/{src,test,scripts}/**/*.ts' --ignore-path ./.prettierignore --config ./prettier.config.mjs --check",
"format": "pnpm format:src && pnpm format:docs",
"format:fix": "pnpm format:src --write && pnpm format:docs --write",
"test:types": "nx run-many --target=test:types",
"test:unit": "nx run-many --target=test:unit",
"test:integration": "nx run-many --target=test:integration",
"test:e2e": "nx run-many --target=test:e2e",
"test:full": "./scripts/run-full-test-suite.sh",
"release": "node scripts/release.mjs",
"release:canary": "node scripts/release.mjs canary",
"prepare": "husky"
},
"dependencies": {
"types": "^0.1.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.30.0",
"@codecov/bundle-analyzer": "^1.9.1",
"@types/node": "^24.12.2",
"@vitest/coverage-v8": "^4.0.10",
"@vitest/eslint-plugin": "^1.4.3",
"@vitest/ui": "^4.0.10",
"all-contributors-cli": "github:jdalrymple/all-contributors-cli#dist",
"eslint-plugin-perfectionist": "^5.9.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"nx": "^22.0.3",
"oxlint": "^1.58.0",
"prettier": "3.6.2",
"tsdown": "^0.21.7",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}