package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {
  2. "name": "meow",
  3. "version": "13.2.0",
  4. "description": "CLI app helper",
  5. "license": "MIT",
  6. "repository": "sindresorhus/meow",
  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": "./build/index.d.ts",
  16. "default": "./build/index.js"
  17. },
  18. "sideEffects": false,
  19. "engines": {
  20. "node": ">=18"
  21. },
  22. "scripts": {
  23. "prepare": "npm run build",
  24. "build": "rollup --config",
  25. "test": "xo && npm run build && ava && tsd --typings build/index.d.ts"
  26. },
  27. "files": [
  28. "build"
  29. ],
  30. "keywords": [
  31. "cli",
  32. "bin",
  33. "util",
  34. "utility",
  35. "helper",
  36. "argv",
  37. "command",
  38. "line",
  39. "meow",
  40. "cat",
  41. "kitten",
  42. "parser",
  43. "option",
  44. "flags",
  45. "input",
  46. "cmd",
  47. "console"
  48. ],
  49. "_actualDependencies": [
  50. "@types/minimist",
  51. "camelcase-keys",
  52. "decamelize",
  53. "decamelize-keys",
  54. "minimist-options",
  55. "normalize-package-data",
  56. "read-package-up",
  57. "redent",
  58. "trim-newlines",
  59. "type-fest",
  60. "yargs-parser"
  61. ],
  62. "devDependencies": {
  63. "@rollup/plugin-commonjs": "^25.0.7",
  64. "@rollup/plugin-json": "^6.1.0",
  65. "@rollup/plugin-node-resolve": "^15.2.3",
  66. "@types/minimist": "^1.2.5",
  67. "ava": "^6.0.1",
  68. "camelcase-keys": "^9.1.2",
  69. "common-tags": "^2.0.0-alpha.1",
  70. "decamelize": "^6.0.0",
  71. "decamelize-keys": "^2.0.1",
  72. "delete_comments": "^0.0.2",
  73. "execa": "^8.0.1",
  74. "globby": "^14.0.0",
  75. "indent-string": "^5.0.0",
  76. "minimist-options": "4.1.0",
  77. "normalize-package-data": "^6.0.0",
  78. "read-package-up": "^11.0.0",
  79. "read-pkg": "^9.0.1",
  80. "redent": "^4.0.0",
  81. "rollup": "^4.9.2",
  82. "rollup-plugin-dts": "^6.1.0",
  83. "rollup-plugin-license": "^3.2.0",
  84. "trim-newlines": "^5.0.0",
  85. "tsd": "^0.30.3",
  86. "type-fest": "^4.9.0",
  87. "typescript": "^5.3.3",
  88. "xo": "^0.56.0",
  89. "yargs-parser": "^21.1.1"
  90. },
  91. "xo": {
  92. "rules": {
  93. "unicorn/no-process-exit": "off",
  94. "unicorn/error-message": "off"
  95. },
  96. "ignores": [
  97. "build"
  98. ]
  99. },
  100. "ava": {
  101. "files": [
  102. "test/*"
  103. ]
  104. }
  105. }