package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@hoppscotch/cli",
  3. "version": "0.4.0",
  4. "description": "A CLI to run Hoppscotch test scripts in CI environments.",
  5. "homepage": "https://hoppscotch.io",
  6. "main": "dist/index.js",
  7. "bin": {
  8. "hopp": "bin/hopp"
  9. },
  10. "publishConfig": {
  11. "access": "public"
  12. },
  13. "engines": {
  14. "node": ">=18"
  15. },
  16. "scripts": {
  17. "build": "pnpm exec tsup",
  18. "dev": "pnpm exec tsup --watch",
  19. "debugger": "node debugger.js 9999",
  20. "prepublish": "pnpm exec tsup",
  21. "prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
  22. "do-typecheck": "pnpm exec tsc --noEmit",
  23. "test": "pnpm run build && jest && rm -rf dist"
  24. },
  25. "keywords": [
  26. "cli",
  27. "hoppscotch",
  28. "hopp-cli"
  29. ],
  30. "author": "Hoppscotch (support@hoppscotch.io)",
  31. "repository": {
  32. "type": "git",
  33. "url": "https://github.com/hoppscotch/hoppscotch.git"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/hoppscotch/hoppscotch/issues",
  37. "email": "support@hoppscotch.io"
  38. },
  39. "license": "MIT",
  40. "private": false,
  41. "devDependencies": {
  42. "@hoppscotch/data": "workspace:^",
  43. "@hoppscotch/js-sandbox": "workspace:^",
  44. "@relmify/jest-fp-ts": "^2.1.1",
  45. "@swc/core": "^1.3.92",
  46. "@types/jest": "^29.5.5",
  47. "@types/lodash": "^4.14.199",
  48. "@types/qs": "^6.9.8",
  49. "axios": "^0.21.4",
  50. "chalk": "^4.1.2",
  51. "commander": "^11.0.0",
  52. "esm": "^3.2.25",
  53. "fp-ts": "^2.16.1",
  54. "io-ts": "^2.2.20",
  55. "jest": "^29.7.0",
  56. "lodash": "^4.17.21",
  57. "prettier": "^3.0.3",
  58. "qs": "^6.11.2",
  59. "ts-jest": "^29.1.1",
  60. "tsup": "^7.2.0",
  61. "typescript": "^5.2.2",
  62. "zod": "^3.22.4"
  63. }
  64. }