package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@hoppscotch/cli",
  3. "version": "0.7.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 && jest && 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. "lodash-es": "4.17.21",
  48. "qs": "6.11.2",
  49. "verzod": "0.2.2",
  50. "zod": "3.22.4"
  51. },
  52. "devDependencies": {
  53. "@hoppscotch/data": "workspace:^",
  54. "@hoppscotch/js-sandbox": "workspace:^",
  55. "@relmify/jest-fp-ts": "2.1.1",
  56. "@swc/core": "1.4.2",
  57. "@types/jest": "29.5.12",
  58. "@types/lodash-es": "4.17.12",
  59. "@types/qs": "6.9.12",
  60. "fp-ts": "2.16.2",
  61. "jest": "29.7.0",
  62. "prettier": "3.2.5",
  63. "qs": "6.11.2",
  64. "ts-jest": "29.1.2",
  65. "tsup": "8.0.2",
  66. "typescript": "5.3.3"
  67. }
  68. }