package.json 887 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "find-cache-dir",
  3. "version": "5.0.0",
  4. "description": "Finds the common standard cache directory",
  5. "license": "MIT",
  6. "repository": "sindresorhus/find-cache-dir",
  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. "engines": {
  19. "node": ">=16"
  20. },
  21. "scripts": {
  22. "test": "xo && ava && tsd"
  23. },
  24. "files": [
  25. "index.js",
  26. "index.d.ts"
  27. ],
  28. "keywords": [
  29. "cache",
  30. "directory",
  31. "caching",
  32. "find",
  33. "search"
  34. ],
  35. "dependencies": {
  36. "common-path-prefix": "^3.0.0",
  37. "pkg-dir": "^7.0.0"
  38. },
  39. "devDependencies": {
  40. "ava": "^5.3.1",
  41. "del": "^7.0.0",
  42. "tempy": "^3.1.0",
  43. "tsd": "^0.28.1",
  44. "xo": "^0.56.0"
  45. },
  46. "ava": {
  47. "workerThreads": false
  48. }
  49. }