package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@hoppscotch/cli",
  3. "version": "0.6.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.6",
  45. "chalk": "^5.3.0",
  46. "commander": "^11.1.0",
  47. "lodash-es": "^4.17.21",
  48. "qs": "^6.11.2",
  49. "zod": "^3.22.4"
  50. },
  51. "devDependencies": {
  52. "@hoppscotch/data": "workspace:^",
  53. "@hoppscotch/js-sandbox": "workspace:^",
  54. "@relmify/jest-fp-ts": "^2.1.1",
  55. "@swc/core": "^1.3.105",
  56. "@types/jest": "^29.5.11",
  57. "@types/lodash-es": "^4.17.12",
  58. "@types/qs": "^6.9.11",
  59. "fp-ts": "^2.16.2",
  60. "jest": "^29.7.0",
  61. "prettier": "^3.2.4",
  62. "ts-jest": "^29.1.2",
  63. "tsup": "^8.0.1",
  64. "typescript": "^5.3.3"
  65. }
  66. }