package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@hoppscotch/cli",
  3. "version": "0.10.2",
  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. "axios": "1.6.7",
  45. "chalk": "5.3.0",
  46. "commander": "11.1.0",
  47. "isolated-vm": "4.7.2",
  48. "lodash-es": "4.17.21",
  49. "qs": "6.11.2",
  50. "verzod": "0.2.2",
  51. "xmlbuilder2": "3.1.1",
  52. "zod": "3.22.4"
  53. },
  54. "devDependencies": {
  55. "@hoppscotch/data": "workspace:^",
  56. "@hoppscotch/js-sandbox": "workspace:^",
  57. "@relmify/jest-fp-ts": "2.1.1",
  58. "@swc/core": "1.4.2",
  59. "@types/lodash-es": "4.17.12",
  60. "@types/qs": "6.9.12",
  61. "fp-ts": "2.16.2",
  62. "prettier": "3.2.5",
  63. "qs": "6.11.2",
  64. "tsup": "8.0.2",
  65. "typescript": "5.3.3",
  66. "vitest": "0.34.6"
  67. }
  68. }