package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@hoppscotch/cli",
  3. "version": "0.12.0",
  4. "description": "A CLI to run Hoppscotch test scripts in CI environments.",
  5. "homepage": "https://hoppscotch.io",
  6. "type": "module",
  7. "main": "dist/index.js",
  8. "bin": {
  9. "hopp": "bin/hopp.js"
  10. },
  11. "publishConfig": {
  12. "access": "public"
  13. },
  14. "engines": {
  15. "node": ">=18"
  16. },
  17. "scripts": {
  18. "build": "pnpm exec tsup",
  19. "dev": "pnpm exec tsup --watch",
  20. "debugger": "node debugger.js 9999",
  21. "prepublish": "pnpm exec tsup",
  22. "prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
  23. "test": "pnpm run build && vitest run",
  24. "do-typecheck": "pnpm exec tsc --noEmit",
  25. "do-test": "pnpm run test"
  26. },
  27. "keywords": [
  28. "cli",
  29. "hoppscotch",
  30. "hopp-cli"
  31. ],
  32. "author": "Hoppscotch (support@hoppscotch.io)",
  33. "repository": {
  34. "type": "git",
  35. "url": "https://github.com/hoppscotch/hoppscotch.git"
  36. },
  37. "bugs": {
  38. "url": "https://github.com/hoppscotch/hoppscotch/issues",
  39. "email": "support@hoppscotch.io"
  40. },
  41. "license": "MIT",
  42. "private": false,
  43. "dependencies": {
  44. "aws4fetch": "1.0.20",
  45. "axios": "1.7.7",
  46. "chalk": "5.3.0",
  47. "commander": "12.1.0",
  48. "isolated-vm": "5.0.1",
  49. "js-md5": "0.8.3",
  50. "lodash-es": "4.17.21",
  51. "qs": "6.13.0",
  52. "verzod": "0.2.3",
  53. "xmlbuilder2": "3.1.1",
  54. "zod": "3.23.8"
  55. },
  56. "devDependencies": {
  57. "@hoppscotch/data": "workspace:^",
  58. "@hoppscotch/js-sandbox": "workspace:^",
  59. "@relmify/jest-fp-ts": "2.1.1",
  60. "@types/lodash-es": "4.17.12",
  61. "@types/qs": "6.9.16",
  62. "fp-ts": "2.16.9",
  63. "prettier": "3.3.3",
  64. "qs": "6.11.2",
  65. "tsup": "8.3.0",
  66. "typescript": "5.6.3",
  67. "vitest": "2.1.2"
  68. }
  69. }