{ "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 ", "contributors": [ "Rainer Killinger " ], "main": "lib/api.js", "types": "lib/api.d.ts", "bin": { "openstapps-gitlab-api": "app.js" }, "scripts": { "build": "tsup --dts", "format": "prettier . --ignore-path ../../.gitignore", "format:fix": "prettier --write . --ignore-path ../../.gitignore", "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.24.7", "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" ] } }