d5e935dd1ada90468ff9e7f759b72dcdcf6af128fcaea677b4b416f214ec5524501d752cb1db1345ea529de57d987ef4e640f61580a86c5ef9a63f25775ba5 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  3. "name": "chownr",
  4. "description": "like `chown -R`",
  5. "version": "3.0.0",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/isaacs/chownr.git"
  9. },
  10. "files": [
  11. "dist"
  12. ],
  13. "devDependencies": {
  14. "@types/node": "^20.12.5",
  15. "mkdirp": "^3.0.1",
  16. "prettier": "^3.2.5",
  17. "rimraf": "^5.0.5",
  18. "tap": "^18.7.2",
  19. "tshy": "^1.13.1",
  20. "typedoc": "^0.25.12"
  21. },
  22. "scripts": {
  23. "prepare": "tshy",
  24. "pretest": "npm run prepare",
  25. "test": "tap",
  26. "preversion": "npm test",
  27. "postversion": "npm publish",
  28. "prepublishOnly": "git push origin --follow-tags",
  29. "format": "prettier --write . --loglevel warn",
  30. "typedoc": "typedoc --tsconfig .tshy/esm.json ./src/*.ts"
  31. },
  32. "license": "BlueOak-1.0.0",
  33. "engines": {
  34. "node": ">=18"
  35. },
  36. "tshy": {
  37. "exports": {
  38. "./package.json": "./package.json",
  39. ".": "./src/index.ts"
  40. }
  41. },
  42. "exports": {
  43. "./package.json": "./package.json",
  44. ".": {
  45. "import": {
  46. "types": "./dist/esm/index.d.ts",
  47. "default": "./dist/esm/index.js"
  48. },
  49. "require": {
  50. "types": "./dist/commonjs/index.d.ts",
  51. "default": "./dist/commonjs/index.js"
  52. }
  53. }
  54. },
  55. "main": "./dist/commonjs/index.js",
  56. "types": "./dist/commonjs/index.d.ts",
  57. "type": "module",
  58. "prettier": {
  59. "semi": false,
  60. "printWidth": 75,
  61. "tabWidth": 2,
  62. "useTabs": false,
  63. "singleQuote": true,
  64. "jsxSingleQuote": false,
  65. "bracketSameLine": true,
  66. "arrowParens": "avoid",
  67. "endOfLine": "lf"
  68. }
  69. }