package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@humanfs/node",
  3. "version": "0.16.7",
  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. "directory": "packages/node"
  28. },
  29. "publishConfig": {
  30. "access": "public"
  31. },
  32. "keywords": [
  33. "filesystem",
  34. "fs",
  35. "hfs",
  36. "files"
  37. ],
  38. "author": "Nicholas C. Zakas",
  39. "license": "Apache-2.0",
  40. "bugs": {
  41. "url": "https://github.com/humanwhocodes/humanfs/issues"
  42. },
  43. "homepage": "https://github.com/humanwhocodes/humanfs#readme",
  44. "engines": {
  45. "node": ">=18.18.0"
  46. },
  47. "devDependencies": {
  48. "@types/node": "^20.9.4",
  49. "@humanfs/test": "^0.15.0",
  50. "@humanfs/types": "^0.15.0",
  51. "mocha": "^10.2.0",
  52. "typescript": "^5.2.2"
  53. },
  54. "dependencies": {
  55. "@humanwhocodes/retry": "^0.4.0",
  56. "@humanfs/core": "^0.19.1"
  57. }
  58. }