mirror of https://github.com/aminya/setup-cpp
227 lines
9.1 KiB
JSON
227 lines
9.1 KiB
JSON
{
|
|
"name": "setup-cpp",
|
|
"version": "0.36.1",
|
|
"description": "Install all the tools required for building and testing C++/C projects.",
|
|
"repository": "https://github.com/aminya/setup-cpp",
|
|
"license": "Apache-2.0",
|
|
"author": "Amin Yahyaabadi",
|
|
"main": "dist/legacy/setup-cpp.js",
|
|
"actions": "./dist/actions/setup-cpp.js",
|
|
"modern": "./dist/modern/setup-cpp.js",
|
|
"source": "./src/main.ts",
|
|
"bin": {
|
|
"setup-cpp": "dist/legacy/setup-cpp.js"
|
|
},
|
|
"files": [
|
|
"action.yml",
|
|
".dockerignore",
|
|
"dist",
|
|
"src",
|
|
"packages",
|
|
"dev/docker",
|
|
"dev/docker/__tests__",
|
|
"README.md",
|
|
"LICENSE.txt",
|
|
"LICENSE.dependencies.txt",
|
|
"package.json",
|
|
"package-version.json",
|
|
"tsconfig.json"
|
|
],
|
|
"scripts": {
|
|
"build": "run-s clean build.packages && run-p lint.tsc build.parcel copy.matchers",
|
|
"build.packages": "pnpm run -r build",
|
|
"build.parcel": "cross-env NODE_ENV=production parcel build && babel ./dist --out-dir dist --plugins @upleveled/babel-plugin-remove-node-prefix --compact --no-babelrc --source-maps true",
|
|
"bump": "ncu -u -x numerous,execa,prettier && pnpm update",
|
|
"clean": "shx rm -rf ./dist ./exe ./packages/*/dist/ && shx mkdir -p ./dist/legacy ./dist/actions ./dist/modern ",
|
|
"copy.matchers": "run-p copy.matchers.legacy copy.matchers.actions copy.matchers.modern",
|
|
"copy.matchers.legacy": "shx cp ./src/gcc/gcc_matcher.json ./dist/legacy/ && shx cp ./src/msvc/msvc_matcher.json ./dist/legacy/ && shx cp ./src/python/python_matcher.json ./dist/legacy/ && shx cp ./src/llvm/llvm_matcher.json ./dist/legacy/",
|
|
"copy.matchers.actions": "shx cp ./src/gcc/gcc_matcher.json ./dist/actions/ && shx cp ./src/msvc/msvc_matcher.json ./dist/actions/ && shx cp ./src/python/python_matcher.json ./dist/actions/ && shx cp ./src/llvm/llvm_matcher.json ./dist/actions/",
|
|
"copy.matchers.modern": "shx cp ./src/gcc/gcc_matcher.json ./dist/modern/ && shx cp ./src/msvc/msvc_matcher.json ./dist/modern/ && shx cp ./src/python/python_matcher.json ./dist/modern/ && shx cp ./src/llvm/llvm_matcher.json ./dist/modern/",
|
|
"dev": "cross-env NODE_ENV=development parcel watch",
|
|
"docs": "shx rm -rf packages/*/README.md && pnpm -r exec readme --path ../../dev/readme/template.md -y && pnpm -r exec ts-readme",
|
|
"format": "run-s lint.prettier",
|
|
"lint": "run-p --aggregate-output --continue-on-error lint.cspell lint.eslint lint.prettier lint.tsc",
|
|
"lint.cspell": "cspell lint --no-progress --show-suggestions --cache --cache-location ./.cache/cspell/.cspellcache",
|
|
"lint.eslint": "eslint **/*.{ts,tsx,js,jsx,cjs,mjs,json,yaml} --no-error-on-unmatched-pattern --cache --cache-location ./.cache/eslint/ --fix",
|
|
"lint.prettier": "prettier --list-different --write .",
|
|
"lint.tsc": "tsc --noEmit",
|
|
"pack.exe": "shx rm -rf ./dist/tsconfig.tsbuildinfo && node ./dev/scripts/pack-exe.mjs",
|
|
"prepublishOnly": "rm ./dist/tsconfig.tsbuildinfo",
|
|
"start.docker": "docker run -t setup-cpp .",
|
|
"start.docker.arch": "docker run -t setup-cpp:arch .",
|
|
"start.docker.fedora": "docker run -t setup-cpp:fedora .",
|
|
"start.docker.ubuntu": "docker run -t setup-cpp:ubuntu .",
|
|
"test.lint": "run-p --aggregate-output --continue-on-error lint.cspell test.lint.eslint test.lint.prettier lint.tsc",
|
|
"test.lint.eslint": "eslint **/*.{ts,tsx,js,jsx,cjs,mjs,json,yaml} --no-error-on-unmatched-pattern --cache --cache-location ./.cache/eslint/",
|
|
"test.lint.prettier": "prettier . --check",
|
|
"test": "jest --runInBand --forceExit --coverage",
|
|
"build.docker_tests": "node ./dev/docker/__tests__/generate-docker-tests.mjs",
|
|
"build.docker.arch": "pnpm build.docker_tests && docker build -f ./dev/docker/__tests__/arch.dockerfile -t setup-cpp:arch .",
|
|
"build.docker.fedora": "pnpm build.docker_tests && docker build -f ./dev/docker/__tests__/fedora.dockerfile -t setup-cpp:fedora .",
|
|
"build.docker.ubuntu": "pnpm build.docker_tests && docker build -f ./dev/docker/__tests__/ubuntu.dockerfile -t setup-cpp:ubuntu .",
|
|
"build.docker.arch.mingw": "pnpm build.docker_tests && docker build -f ./dev/docker/__tests__/arch-mingw.dockerfile -t setup-cpp:arch-mingw .",
|
|
"build.docker.fedora.mingw": "pnpm build.docker_tests && docker build -f ./dev/docker/__tests__/fedora-mingw.dockerfile -t setup-cpp:fedora-mingw .",
|
|
"build.docker.ubuntu.mingw": "pnpm build.docker_tests && docker build -f ./dev/docker/__tests__/ubuntu-mingw.dockerfile -t setup-cpp:ubuntu-mingw .",
|
|
"test.docker.arch": "pnpm build.docker.arch && container-structure-test test --image setup-cpp:arch --config ./dev/docker/__tests__/arch.yml",
|
|
"test.docker.fedora": "pnpm build.docker.fedora && container-structure-test test --image setup-cpp:fedora --config ./dev/docker/__tests__/fedora.yml",
|
|
"test.docker.ubuntu": "pnpm build.docker.ubuntu && container-structure-test test --image setup-cpp:ubuntu --config ./dev/docker/__tests__/ubuntu.yml",
|
|
"test.docker.arch.mingw": "pnpm build.docker.arch.mingw && container-structure-test test --image setup-cpp:arch-mingw --config ./dev/docker/__tests__/arch-mingw.yml",
|
|
"test.docker.fedora.mingw": "pnpm build.docker.fedora.mingw && container-structure-test test --image setup-cpp:fedora-mingw --config ./dev/docker/__tests__/fedora-mingw.yml",
|
|
"test.docker.ubuntu.mingw": "pnpm build.docker.ubuntu.mingw && container-structure-test test --image setup-cpp:ubuntu-mingw --config ./dev/docker/__tests__/ubuntu-mingw.yml"
|
|
},
|
|
"prettier": "prettier-config-atomic",
|
|
"devDependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/io": "^1.1.3",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"@babel/cli": "^7.23.4",
|
|
"@swc/jest": "^0.2.31",
|
|
"@types/cross-spawn": "^6.0.6",
|
|
"@types/eslint": "^8.56.2",
|
|
"@types/jest": "^29.5.11",
|
|
"@types/mri": "^1.1.5",
|
|
"@types/node": "^20.11.5",
|
|
"@types/prettier": "2.7.3",
|
|
"@types/semver": "^7.5.6",
|
|
"@types/which": "^3.0.3",
|
|
"@upleveled/babel-plugin-remove-node-prefix": "github:aminya/babel-plugin-remove-node-prefix#95fcbd92405b99a6eece48c493548996f12e6519",
|
|
"admina": "^1.0.0",
|
|
"caxa": "^3.0.1",
|
|
"ci-info": "^4.0.0",
|
|
"ci-log": "workspace:*",
|
|
"cross-env": "7.0.3",
|
|
"cross-spawn": "^7.0.3",
|
|
"cspell": "^8.3.2",
|
|
"escape-path-with-spaces": "^1.0.2",
|
|
"escape-quotes": "^1.0.2",
|
|
"escape-string-regexp": "^5.0.0",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-atomic": "^1.20.6",
|
|
"exec-powershell": "workspace:*",
|
|
"execa": "^7.2.0",
|
|
"is-url-online": "^1.5.0",
|
|
"jest": "^29.7.0",
|
|
"micro-memoize": "^4.1.2",
|
|
"mri": "^1.2.0",
|
|
"msvc-dev-cmd": "github:aminya/msvc-dev-cmd#97843d525947e3f3776ee359b597316909754c4d",
|
|
"npm-check-updates": "^16.14.12",
|
|
"npm-run-all2": "^6.1.1",
|
|
"numerous": "1.0.3",
|
|
"p-timeout": "^6.1.2",
|
|
"parcel": "2.11.0",
|
|
"path-exists": "^5.0.0",
|
|
"patha": "^0.4.1",
|
|
"prettier": "3.2.2",
|
|
"prettier-config-atomic": "^4.0.0",
|
|
"readme-md-generator": "^1.0.0",
|
|
"retry-as-promised": "^7.0.4",
|
|
"semver": "7.5.4",
|
|
"setup-python": "github:aminya/setup-python#a783db655c6e40317e2c0c96f9d162d9c9f4a751",
|
|
"shx": "0.3.4",
|
|
"simple-update-notifier": "^2.0.0",
|
|
"terser-config-atomic": "^1.0.0",
|
|
"time-delta": "github:aminya/time-delta#69d91a41cef28e569be9a2991129f5f7d1f0d00e",
|
|
"ts-node": "^10.9.2",
|
|
"ts-readme": "^1.1.3",
|
|
"typescript": "^5.3.3",
|
|
"ubuntu-version": "^2.0.0",
|
|
"untildify-user": "workspace:*",
|
|
"which": "^4.0.0"
|
|
},
|
|
"productionDependencies": [
|
|
"@actions/core",
|
|
"@actions/exec",
|
|
"@actions/io",
|
|
"@actions/tool-cache",
|
|
"admina",
|
|
"ci-info",
|
|
"ci-log",
|
|
"escape-path-with-spaces",
|
|
"escape-quotes",
|
|
"escape-string-regexp",
|
|
"exec-powershell",
|
|
"execa",
|
|
"is-url-online",
|
|
"micro-memoize",
|
|
"mri",
|
|
"msvc-dev-cmd",
|
|
"numerous",
|
|
"path-exists",
|
|
"patha",
|
|
"retry-as-promised",
|
|
"semver",
|
|
"setup-python",
|
|
"simple-update-notifier",
|
|
"time-delta",
|
|
"ubuntu-version",
|
|
"untildify-user"
|
|
],
|
|
"engines": {
|
|
"node": ">=12.x"
|
|
},
|
|
"keywords": [
|
|
"github-actions",
|
|
"actions",
|
|
"github",
|
|
"setup-cpp",
|
|
"c++",
|
|
"cpp",
|
|
"cxx",
|
|
"cc",
|
|
"llvm",
|
|
"clang",
|
|
"gcc",
|
|
"mingw",
|
|
"msvc",
|
|
"cl",
|
|
"cmake",
|
|
"ninja",
|
|
"meson"
|
|
],
|
|
"alias": {
|
|
"electron": false,
|
|
"patha": "patha/dist/index.node.mjs",
|
|
"admina": "admina/dist/index.mjs",
|
|
"fs/promises": "./src/utils/compat/fs/promises.ts"
|
|
},
|
|
"pnpm": {
|
|
"overrides": {
|
|
"@actions/http-client": "2.1.0"
|
|
}
|
|
},
|
|
"targets": {
|
|
"main": {
|
|
"context": "node",
|
|
"engines": {
|
|
"node": ">=12.x"
|
|
},
|
|
"includeNodeModules": {
|
|
"update-notifier": false
|
|
},
|
|
"optimize": true,
|
|
"outputFormat": "commonjs"
|
|
},
|
|
"actions": {
|
|
"context": "node",
|
|
"engines": {
|
|
"node": ">=16.x"
|
|
},
|
|
"includeNodeModules": {
|
|
"update-notifier": false
|
|
},
|
|
"optimize": true,
|
|
"outputFormat": "commonjs"
|
|
},
|
|
"modern": {
|
|
"context": "node",
|
|
"engines": {
|
|
"node": ">=20.x"
|
|
},
|
|
"includeNodeModules": true,
|
|
"optimize": true,
|
|
"outputFormat": "commonjs"
|
|
}
|
|
}
|
|
}
|