mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"name": "@openstapps/gitlab-api",
|
|
"description": "Wraps common GitLab API calls in a TypeScript class.",
|
|
"version": "2.1.0",
|
|
"type": "module",
|
|
"license": "GPL-3.0-only",
|
|
"repository": "git@gitlab.com:openstapps/gitlab-api.git",
|
|
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
|
|
"contributors": [
|
|
"Rainer Killinger <openstapps@killinger.co>"
|
|
],
|
|
"main": "lib/api.js",
|
|
"types": "lib/api.d.ts",
|
|
"bin": {
|
|
"openstapps-gitlab-api": "app.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsup --dts",
|
|
"format": "prettier .",
|
|
"format:fix": "prettier --write .",
|
|
"lint": "eslint --ext .ts src/",
|
|
"lint:fix": "eslint --fix --ext .ts src/"
|
|
},
|
|
"dependencies": {
|
|
"@openstapps/logger": "workspace:*",
|
|
"commander": "10.0.0",
|
|
"got": "12.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@openstapps/eslint-config": "workspace:*",
|
|
"@openstapps/prettier-config": "workspace:*",
|
|
"@openstapps/tsconfig": "workspace:*",
|
|
"@types/node": "18.15.3",
|
|
"@typescript-eslint/eslint-plugin": "5.49.0",
|
|
"@typescript-eslint/parser": "5.49.0",
|
|
"ts-node": "10.9.1",
|
|
"tsup": "6.7.0",
|
|
"typedoc": "0.23.28",
|
|
"typescript": "4.8.4"
|
|
},
|
|
"tsup": {
|
|
"entry": [
|
|
"src/app.ts",
|
|
"src/api.ts"
|
|
],
|
|
"sourcemap": true,
|
|
"clean": true,
|
|
"format": "esm",
|
|
"outDir": "lib"
|
|
},
|
|
"prettier": "@openstapps/prettier-config",
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"@openstapps"
|
|
]
|
|
}
|
|
}
|