@gitbeaker/core 0.0.0-canary-20260118165457

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@gitbeaker/core",
3
+ "version": "0.0.0-canary-20260118165457",
4
+ "description": "Core API implementation of the GitLab API",
5
+ "license": "MIT",
6
+ "engines": {
7
+ "node": ">=18.20.0"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/jdalrymple/gitbeaker",
12
+ "directory": "packages/core"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/jdalrymple/gitbeaker/issues"
16
+ },
17
+ "homepage": "https://github.com/jdalrymple/gitbeaker#readme",
18
+ "author": {
19
+ "name": "Justin Dalrymple"
20
+ },
21
+ "keywords": [
22
+ "gitlab",
23
+ "api",
24
+ "core",
25
+ "gitbeaker"
26
+ ],
27
+ "types": "./dist/index.d.ts",
28
+ "exports": {
29
+ "./map.json": "./dist/map.json",
30
+ ".": {
31
+ "import": {
32
+ "types": "./dist/index.d.mts",
33
+ "default": "./dist/index.mjs"
34
+ },
35
+ "require": {
36
+ "types": "./dist/index.d.ts",
37
+ "default": "./dist/index.js"
38
+ }
39
+ }
40
+ },
41
+ "files": [
42
+ "dist"
43
+ ],
44
+ "scripts": {
45
+ "build": "yarn run build:map && yarn run build:self",
46
+ "build:map": "tsx scripts/generate.ts",
47
+ "build:self": "tsup src/index.ts --format esm,cjs --dts --treeshake",
48
+ "test:types": "tsc",
49
+ "test:integration": "jest --maxWorkers=50% test/integration",
50
+ "test:unit": "jest --maxWorkers=50% test/unit",
51
+ "lint": "eslint '**/{src,test,scripts}/**/*.ts'",
52
+ "lint:fix": "yarn lint --fix"
53
+ },
54
+ "dependencies": {
55
+ "@gitbeaker/requester-utils": "0.0.0-canary-20260118165457",
56
+ "qs": "^6.14.0",
57
+ "xcase": "^2.0.1"
58
+ },
59
+ "devDependencies": {
60
+ "@types/node": "^24.10.1",
61
+ "tsup": "^8.5.1",
62
+ "tsx": "^4.20.6",
63
+ "typescript": "^5.9.3"
64
+ }
65
+ }