setup-cpp/package.json

226 lines
9.0 KiB
JSON
Raw Normal View History

{
"name": "setup-cpp",
2023-11-16 03:04:51 +08:00
"version": "0.36.1",
2021-09-14 14:57:47 +08:00
"description": "Install all the tools required for building and testing C++/C projects.",
"repository": "https://github.com/aminya/setup-cpp",
"license": "Apache-2.0",
2021-10-08 09:00:00 +08:00
"author": "Amin Yahyaabadi",
2023-07-16 06:41:58 +08:00
"main": "dist/legacy/setup-cpp.js",
"actions": "./dist/actions/setup-cpp.js",
"modern": "./dist/modern/setup-cpp.js",
2021-10-08 09:00:00 +08:00
"source": "./src/main.ts",
"bin": {
2023-07-16 06:41:58 +08:00
"setup-cpp": "dist/legacy/setup-cpp.js"
2021-10-08 09:00:00 +08:00
},
"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",
2023-04-23 16:09:38 +08:00
"bump": "ncu -u -x numerous && pnpm update",
"clean": "shx rm -rf ./dist ./exe ./packages/*/dist/ && shx mkdir -p ./dist/legacy ./dist/actions ./dist/modern ",
2023-07-16 06:41:58 +08:00
"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",
2022-08-03 04:12:42 +08:00
"format": "run-s lint.prettier",
"lint": "run-p --aggregate-output --continue-on-error lint.cspell lint.eslint lint.prettier lint.tsc",
2022-11-09 08:08:38 +08:00
"lint.cspell": "cspell lint --no-progress --show-suggestions --cache --cache-location ./.cache/cspell/.cspellcache",
2022-08-03 04:12:42 +08:00
"lint.eslint": "eslint **/*.{ts,tsx,js,jsx,cjs,mjs,json,yaml} --no-error-on-unmatched-pattern --cache --cache-location ./.cache/eslint/ --fix",
2022-11-09 08:30:09 +08:00
"lint.prettier": "prettier --list-different --write .",
"lint.tsc": "tsc --noEmit",
2023-05-25 15:17:16 +08:00
"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 .",
2022-08-03 04:12:42 +08:00
"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",
2023-09-05 16:11:18 +08:00
"test": "jest --runInBand --forceExit --coverage",
2023-07-25 05:08:07 +08:00
"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": {
2022-10-20 05:30:11 +08:00
"@actions/core": "^1.10.0",
2022-04-05 07:13:42 +08:00
"@actions/exec": "^1.1.1",
2023-04-14 16:15:14 +08:00
"@actions/io": "^1.1.3",
2022-05-21 09:32:41 +08:00
"@actions/tool-cache": "^2.0.1",
2023-07-16 06:41:58 +08:00
"@babel/cli": "^7.22.9",
2023-07-25 04:20:39 +08:00
"@swc/jest": "^0.2.27",
2021-09-17 18:21:00 +08:00
"@types/cross-spawn": "^6.0.2",
2023-08-02 05:06:23 +08:00
"@types/eslint": "^8.44.1",
2023-07-16 06:41:58 +08:00
"@types/jest": "^29.5.3",
2021-09-18 01:51:59 +08:00
"@types/mri": "^1.1.1",
2023-08-02 05:06:23 +08:00
"@types/node": "^20.4.5",
2023-06-28 08:09:14 +08:00
"@types/prettier": "2.7.3",
2023-05-25 07:45:05 +08:00
"@types/semver": "^7.5.0",
2023-04-14 16:15:14 +08:00
"@types/which": "^3.0.0",
"@upleveled/babel-plugin-remove-node-prefix": "github:aminya/babel-plugin-remove-node-prefix#95fcbd92405b99a6eece48c493548996f12e6519",
"admina": "^0.2.2",
2022-10-20 05:30:11 +08:00
"caxa": "^3.0.1",
"ci-info": "^3.8.0",
"ci-log": "workspace:*",
"cross-env": "7.0.3",
2021-09-17 18:21:00 +08:00
"cross-spawn": "^7.0.3",
2023-07-25 04:20:04 +08:00
"cspell": "^6.31.2",
2023-03-10 05:36:02 +08:00
"escape-path-with-spaces": "^1.0.2",
2023-01-23 06:23:06 +08:00
"escape-quotes": "^1.0.2",
"escape-string-regexp": "^5.0.0",
2023-08-02 05:06:23 +08:00
"eslint": "^8.46.0",
2023-06-28 08:09:14 +08:00
"eslint-config-atomic": "^1.19.3",
"exec-powershell": "workspace:*",
2023-08-02 05:06:23 +08:00
"execa": "^7.2.0",
2023-01-23 06:23:06 +08:00
"is-url-online": "^1.5.0",
2023-08-02 05:06:23 +08:00
"jest": "^29.6.2",
2023-06-29 06:22:03 +08:00
"micro-memoize": "^4.1.2",
2023-01-23 06:23:06 +08:00
"mri": "^1.2.0",
2023-10-20 01:08:36 +08:00
"msvc-dev-cmd": "github:aminya/msvc-dev-cmd#97843d525947e3f3776ee359b597316909754c4d",
2023-08-02 05:06:23 +08:00
"npm-check-updates": "^16.10.17",
2023-07-16 06:41:58 +08:00
"npm-run-all2": "^6.0.6",
2023-01-23 06:23:06 +08:00
"numerous": "1.0.3",
"p-timeout": "^6.1.2",
2023-06-28 08:09:14 +08:00
"parcel": "2.9.3",
2023-04-23 16:09:38 +08:00
"path-exists": "^5.0.0",
2023-01-23 06:23:06 +08:00
"patha": "^0.4.1",
2023-07-25 04:20:04 +08:00
"prettier": "3.0.0",
2022-09-19 11:20:54 +08:00
"prettier-config-atomic": "^3.1.0",
"readme-md-generator": "^1.0.0",
2023-03-10 05:31:36 +08:00
"retry-as-promised": "^7.0.4",
2023-07-25 04:20:04 +08:00
"semver": "7.5.4",
"setup-python": "github:aminya/setup-python#a783db655c6e40317e2c0c96f9d162d9c9f4a751",
2022-01-23 09:33:54 +08:00
"shx": "0.3.4",
2023-06-28 08:09:14 +08:00
"simple-update-notifier": "^2.0.0",
"terser-config-atomic": "^1.0.0",
2023-01-23 06:23:06 +08:00
"time-delta": "github:aminya/time-delta#69d91a41cef28e569be9a2991129f5f7d1f0d00e",
"ts-node": "^10.9.1",
"ts-readme": "^1.1.3",
2023-07-16 06:41:58 +08:00
"typescript": "^5.1.6",
2023-01-23 06:23:06 +08:00
"ubuntu-version": "^2.0.0",
"untildify-user": "workspace:*",
2023-05-25 07:45:05 +08:00
"which": "^3.0.1"
},
"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"
],
2021-10-08 09:00:00 +08:00
"engines": {
2023-04-06 23:34:55 +08:00
"node": ">=12.x"
2021-10-08 09:00:00 +08:00
},
"keywords": [
"github-actions",
"actions",
"github",
"setup-cpp",
"c++",
"cpp",
"cxx",
"cc",
"llvm",
"clang",
"gcc",
"mingw",
"msvc",
"cl",
"cmake",
"ninja",
"meson"
2021-10-08 09:00:00 +08:00
],
"alias": {
2022-08-22 12:01:50 +08:00
"electron": false,
"patha": "patha/dist/index.node.mjs",
"admina": "admina/dist/index.mjs"
},
"pnpm": {
"overrides": {
"whatwg-url": "^12"
}
},
2021-10-08 09:00:00 +08:00
"targets": {
2023-07-16 06:41:58 +08:00
"main": {
2021-10-08 09:00:00 +08:00
"context": "node",
"engines": {
"node": ">=12.x"
},
"includeNodeModules": {
"update-notifier": false
},
"optimize": true,
2022-07-06 12:19:58 +08:00
"outputFormat": "commonjs"
},
2023-07-16 06:41:58 +08:00
"actions": {
"context": "node",
"engines": {
"node": ">=16.x"
},
"includeNodeModules": {
"update-notifier": false
},
"optimize": true,
"outputFormat": "commonjs"
},
2023-07-16 06:41:58 +08:00
"modern": {
"context": "node",
"engines": {
2023-07-16 06:41:58 +08:00
"node": ">=20.x"
},
"includeNodeModules": true,
"optimize": true,
"outputFormat": "commonjs"
2021-10-08 09:00:00 +08:00
}
}
}