2022-08-08 07:59:24 +08:00
|
|
|
{
|
|
|
|
"name": "exec-powershell",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Run a powershell command.",
|
|
|
|
"homepage": "https://github.com/aminya/setup-cpp",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"author": "Amin Yahyaabadi",
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
"source": "./src/index.ts",
|
|
|
|
"scripts": {
|
2024-08-16 06:55:02 +08:00
|
|
|
"build": "tsc --pretty",
|
|
|
|
"lint": "tsc --noEmit --pretty"
|
2022-08-08 07:59:24 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-01-22 13:31:35 +08:00
|
|
|
"execa": "<8",
|
|
|
|
"which": "^4.0.0"
|
2022-08-08 07:59:24 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-01-22 13:31:35 +08:00
|
|
|
"@types/which": "^3.0.0"
|
2022-08-08 07:59:24 +08:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"powershell",
|
|
|
|
"pwsh",
|
|
|
|
"exec",
|
|
|
|
"execa",
|
|
|
|
"spawn",
|
|
|
|
"system",
|
|
|
|
"github-actions",
|
|
|
|
"github",
|
|
|
|
"actions",
|
|
|
|
"gitlab",
|
|
|
|
"ci"
|
|
|
|
]
|
|
|
|
}
|