mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
867 B
47 lines
867 B
{
|
|
"name": "powershell-utils",
|
|
"version": "0.1.0",
|
|
"description": "Utilities for executing PowerShell commands",
|
|
"license": "MIT",
|
|
"repository": "sindresorhus/powershell-utils",
|
|
"funding": "https://github.com/sponsors/sindresorhus",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "https://sindresorhus.com"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
"types": "./index.d.ts",
|
|
"default": "./index.js"
|
|
},
|
|
"sideEffects": false,
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"scripts": {
|
|
"test": "xo && ava && tsc index.d.ts --skipLibCheck"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts"
|
|
],
|
|
"keywords": [
|
|
"powershell",
|
|
"windows",
|
|
"execute",
|
|
"command",
|
|
"shell",
|
|
"console",
|
|
"terminal",
|
|
"cli",
|
|
"spawn",
|
|
"exec",
|
|
"utilities"
|
|
],
|
|
"devDependencies": {
|
|
"ava": "^6.4.1",
|
|
"typescript": "^5.9.3",
|
|
"xo": "^0.59.0"
|
|
}
|
|
}
|
|
|