package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@humanfs/node",
  3. "version": "0.16.6",
  4. "description": "The Node.js bindings of the humanfs library.",
  5. "type": "module",
  6. "main": "dist/index.js",
  7. "types": "dist/index.d.ts",
  8. "exports": {
  9. "import": {
  10. "types": "./dist/index.d.ts",
  11. "default": "./src/index.js"
  12. }
  13. },
  14. "files": [
  15. "dist",
  16. "src"
  17. ],
  18. "scripts": {
  19. "build": "tsc",
  20. "prepare": "npm run build",
  21. "pretest": "npm run build",
  22. "test": "mocha ./tests/"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/humanwhocodes/humanfs.git"
  27. },
  28. "publishConfig": {
  29. "access": "public"
  30. },
  31. "keywords": [
  32. "filesystem",
  33. "fs",
  34. "hfs",
  35. "files"
  36. ],
  37. "author": "Nicholas C. Zakas",
  38. "license": "Apache-2.0",
  39. "bugs": {
  40. "url": "https://github.com/humanwhocodes/humanfs/issues"
  41. },
  42. "homepage": "https://github.com/humanwhocodes/humanfs#readme",
  43. "engines": {
  44. "node": ">=18.18.0"
  45. },
  46. "devDependencies": {
  47. "@types/node": "^20.9.4",
  48. "@humanfs/test": "^0.15.0",
  49. "@humanfs/types": "^0.15.0",
  50. "mocha": "^10.2.0",
  51. "typescript": "^5.2.2"
  52. },
  53. "dependencies": {
  54. "@humanwhocodes/retry": "^0.3.0",
  55. "@humanfs/core": "^0.19.1"
  56. }
  57. }