setup-cpp/packages/setup-apt/package.json

53 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "setup-apt",
"version": "2.0.0",
"description": "Setup apt packages and repositories in Debian/Ubuntu-based distributions",
"repository": "https://github.com/aminya/setup-cpp",
"homepage": "https://github.com/aminya/setup-cpp/tree/master/packages/setup-apt",
"license": "Apache-2.0",
"author": "Amin Yahyaabadi",
"main": "./dist/index.js",
"source": "./src/index.ts",
"type": "module",
"scripts": {
"build": "tsc --pretty",
2024-08-24 06:20:37 +08:00
"dev": "tsc --watch --pretty",
"lint.tsc": "tsc --noEmit --pretty",
2024-08-16 17:32:26 +08:00
"lint.eslint": "eslint **/*.{ts,tsx,js,jsx,cjs,mjs,json,yaml} --no-error-on-unmatched-pattern --cache --cache-location ./.cache/eslint/ --fix",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@types/node": "^12",
"admina": "^1.0.1",
"ci-info": "^4.0.0",
"path-exists": "^5.0.0",
"ci-log": "workspace:*",
"envosman": "workspace:*",
"which": "4.0.0",
"execa": "^7.2.0",
"escape-string-regexp": "^5.0.0",
"node-downloader-helper": "2.1.9"
},
"engines": {
"node": ">=12"
},
"keywords": [
"setup",
"apt",
"apt-get",
"repository",
"add-apt-repository",
"apt-cache",
"aptitude",
"install",
"setup-apt",
"repositories",
"linux",
"ubuntu",
"debian",
"package",
"apt-key"
],
"devDependencies": {}
}