package.json 865 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "wsl-utils",
  3. "version": "0.1.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": ">=18"
  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. "wsl",
  31. "windows",
  32. "subsystem",
  33. "linux",
  34. "powershell",
  35. "mount",
  36. "utilities"
  37. ],
  38. "dependencies": {
  39. "is-wsl": "^3.1.0"
  40. },
  41. "devDependencies": {
  42. "ava": "^6.3.0",
  43. "typescript": "^5.8.3",
  44. "xo": "^1.0.0"
  45. }
  46. }