mirror of https://github.com/aminya/setup-cpp
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"name": "exec-powershell",
|
|
"version": "1.0.1",
|
|
"description": "Run a powershell command.",
|
|
"repository": "https://github.com/aminya/setup-cpp",
|
|
"homepage": "https://github.com/aminya/setup-cpp/tree/master/packages/exec-powershell",
|
|
"license": "Apache-2.0",
|
|
"author": "Amin Yahyaabadi",
|
|
"main": "./dist/index.js",
|
|
"source": "./src/index.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc --pretty",
|
|
"dev": "tsc --watch --pretty",
|
|
"lint.tsc": "tsc --noEmit --pretty",
|
|
"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": {
|
|
"execa": "7.2.0",
|
|
"which": "^4.0.0",
|
|
"@types/node": "^22.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/which": "^3.0.0"
|
|
},
|
|
"keywords": [
|
|
"powershell",
|
|
"pwsh",
|
|
"exec",
|
|
"execa",
|
|
"spawn",
|
|
"system",
|
|
"github-actions",
|
|
"github",
|
|
"actions",
|
|
"gitlab",
|
|
"ci"
|
|
]
|
|
}
|