package.json 867 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "powershell-utils",
  3. "version": "0.2.0",
  4. "description": "Utilities for executing PowerShell commands",
  5. "license": "MIT",
  6. "repository": "sindresorhus/powershell-utils",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "type": "module",
  14. "exports": {
  15. "types": "./index.d.ts",
  16. "default": "./index.js"
  17. },
  18. "sideEffects": false,
  19. "engines": {
  20. "node": ">=20"
  21. },
  22. "scripts": {
  23. "test": "xo && ava && tsc index.d.ts --skipLibCheck"
  24. },
  25. "files": [
  26. "index.js",
  27. "index.d.ts"
  28. ],
  29. "keywords": [
  30. "powershell",
  31. "windows",
  32. "execute",
  33. "command",
  34. "shell",
  35. "console",
  36. "terminal",
  37. "cli",
  38. "spawn",
  39. "exec",
  40. "utilities"
  41. ],
  42. "devDependencies": {
  43. "ava": "^6.4.1",
  44. "typescript": "^5.9.3",
  45. "xo": "^0.59.0"
  46. }
  47. }