package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@hoppscotch/cli",
  3. "version": "0.10.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. "pretest": "pnpm run build",
  24. "test": "vitest run",
  25. "do-typecheck": "pnpm exec tsc --noEmit",
  26. "do-test": "pnpm run test",
  27. "postinstall": "pnpm run build"
  28. },
  29. "keywords": [
  30. "cli",
  31. "hoppscotch",
  32. "hopp-cli"
  33. ],
  34. "author": "Hoppscotch (support@hoppscotch.io)",
  35. "repository": {
  36. "type": "git",
  37. "url": "https://github.com/hoppscotch/hoppscotch.git"
  38. },
  39. "bugs": {
  40. "url": "https://github.com/hoppscotch/hoppscotch/issues",
  41. "email": "support@hoppscotch.io"
  42. },
  43. "license": "MIT",
  44. "private": false,
  45. "dependencies": {
  46. "axios": "1.6.7",
  47. "chalk": "5.3.0",
  48. "commander": "11.1.0",
  49. "isolated-vm": "4.7.2",
  50. "lodash-es": "4.17.21",
  51. "qs": "6.11.2",
  52. "verzod": "0.2.2",
  53. "xmlbuilder2": "3.1.1",
  54. "zod": "3.22.4"
  55. },
  56. "devDependencies": {
  57. "@hoppscotch/data": "workspace:^",
  58. "@hoppscotch/js-sandbox": "workspace:^",
  59. "@relmify/jest-fp-ts": "2.1.1",
  60. "@swc/core": "1.4.2",
  61. "@types/lodash-es": "4.17.12",
  62. "@types/qs": "6.9.12",
  63. "fp-ts": "2.16.2",
  64. "prettier": "3.2.5",
  65. "qs": "6.11.2",
  66. "tsup": "8.0.2",
  67. "typescript": "5.3.3",
  68. "vitest": "0.34.6"
  69. }
  70. }