mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
66 lines
1.5 KiB
JSON
66 lines
1.5 KiB
JSON
{
|
|
"name": "@gitbeaker/core",
|
|
"version": "43.8.0",
|
|
"description": "Core API implementation of the GitLab API",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.20.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jdalrymple/gitbeaker",
|
|
"directory": "packages/core"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jdalrymple/gitbeaker/issues"
|
|
},
|
|
"homepage": "https://github.com/jdalrymple/gitbeaker#readme",
|
|
"author": {
|
|
"name": "Justin Dalrymple"
|
|
},
|
|
"keywords": [
|
|
"gitlab",
|
|
"api",
|
|
"core",
|
|
"gitbeaker"
|
|
],
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
"./map.json": "./dist/map.json",
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "yarn run build:map && yarn run build:self",
|
|
"build:map": "tsx scripts/generate.ts",
|
|
"build:self": "tsup src/index.ts --format esm,cjs --dts --treeshake",
|
|
"test:types": "tsc",
|
|
"test:integration": "jest --maxWorkers=50% test/integration",
|
|
"test:unit": "jest --maxWorkers=50% test/unit",
|
|
"lint": "eslint '**/{src,test,scripts}/**/*.ts'",
|
|
"lint:fix": "yarn lint --fix"
|
|
},
|
|
"dependencies": {
|
|
"@gitbeaker/requester-utils": "^43.8.0",
|
|
"qs": "^6.14.0",
|
|
"xcase": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.10.1",
|
|
"tsup": "^8.5.1",
|
|
"tsx": "^4.20.6",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|