package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "@hoppscotch/cli",
  3. "version": "0.9.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 && rm -rf dist",
  24. "do-typecheck": "pnpm exec tsc --noEmit",
  25. "do-test": "pnpm 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. "zod": "3.22.4"
  52. },
  53. "devDependencies": {
  54. "@hoppscotch/data": "workspace:^",
  55. "@hoppscotch/js-sandbox": "workspace:^",
  56. "@relmify/jest-fp-ts": "2.1.1",
  57. "@swc/core": "1.4.2",
  58. "@types/lodash-es": "4.17.12",
  59. "@types/qs": "6.9.12",
  60. "fp-ts": "2.16.2",
  61. "prettier": "3.2.5",
  62. "qs": "6.11.2",
  63. "tsup": "8.0.2",
  64. "typescript": "5.3.3",
  65. "vitest": "0.34.6"
  66. }
  67. }