package.json 915 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "wsl-utils",
  3. "version": "1.0.0",
  4. "description": "Utilities for working with Windows Subsystem for Linux (WSL)",
  5. "license": "MIT",
  6. "repository": "sindresorhus/wsl-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. "utilities.js"
  29. ],
  30. "keywords": [
  31. "wsl",
  32. "windows",
  33. "subsystem",
  34. "linux",
  35. "powershell",
  36. "mount",
  37. "utilities"
  38. ],
  39. "dependencies": {
  40. "is-wsl": "^3.1.0",
  41. "powershell-utils": "^0.1.0"
  42. },
  43. "devDependencies": {
  44. "ava": "^6.4.1",
  45. "typescript": "^5.9.3",
  46. "xo": "^1.2.3"
  47. }
  48. }