package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "@isaacs/fs-minipass",
  3. "version": "4.0.1",
  4. "main": "./dist/commonjs/index.js",
  5. "scripts": {
  6. "prepare": "tshy",
  7. "pretest": "npm run prepare",
  8. "test": "tap",
  9. "preversion": "npm test",
  10. "postversion": "npm publish",
  11. "prepublishOnly": "git push origin --follow-tags",
  12. "format": "prettier --write . --loglevel warn",
  13. "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts"
  14. },
  15. "keywords": [],
  16. "author": "Isaac Z. Schlueter",
  17. "license": "ISC",
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/npm/fs-minipass.git"
  21. },
  22. "description": "fs read and write streams based on minipass",
  23. "dependencies": {
  24. "minipass": "^7.0.4"
  25. },
  26. "devDependencies": {
  27. "@types/node": "^20.11.30",
  28. "mutate-fs": "^2.1.1",
  29. "prettier": "^3.2.5",
  30. "tap": "^18.7.1",
  31. "tshy": "^1.12.0",
  32. "typedoc": "^0.25.12"
  33. },
  34. "files": [
  35. "dist"
  36. ],
  37. "engines": {
  38. "node": ">=18.0.0"
  39. },
  40. "tshy": {
  41. "exports": {
  42. "./package.json": "./package.json",
  43. ".": "./src/index.ts"
  44. }
  45. },
  46. "exports": {
  47. "./package.json": "./package.json",
  48. ".": {
  49. "import": {
  50. "types": "./dist/esm/index.d.ts",
  51. "default": "./dist/esm/index.js"
  52. },
  53. "require": {
  54. "types": "./dist/commonjs/index.d.ts",
  55. "default": "./dist/commonjs/index.js"
  56. }
  57. }
  58. },
  59. "types": "./dist/commonjs/index.d.ts",
  60. "type": "module",
  61. "prettier": {
  62. "semi": false,
  63. "printWidth": 75,
  64. "tabWidth": 2,
  65. "useTabs": false,
  66. "singleQuote": true,
  67. "jsxSingleQuote": false,
  68. "bracketSameLine": true,
  69. "arrowParens": "avoid",
  70. "endOfLine": "lf"
  71. }
  72. }