package.json 872 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "path-type",
  3. "version": "6.0.0",
  4. "description": "Check if a path is a file, directory, or symlink",
  5. "license": "MIT",
  6. "repository": "sindresorhus/path-type",
  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 && nyc ava && tsd"
  24. },
  25. "files": [
  26. "index.js",
  27. "index.d.ts"
  28. ],
  29. "keywords": [
  30. "path",
  31. "fs",
  32. "type",
  33. "is",
  34. "check",
  35. "directory",
  36. "file",
  37. "filepath",
  38. "symlink",
  39. "symbolic",
  40. "link",
  41. "stat",
  42. "stats",
  43. "filesystem"
  44. ],
  45. "devDependencies": {
  46. "ava": "^6.1.3",
  47. "nyc": "^17.0.0",
  48. "tsd": "^0.31.1",
  49. "xo": "^0.59.2"
  50. }
  51. }