package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@hoppscotch/cli",
  3. "version": "0.1.13",
  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. "scripts": {
  14. "build": "pnpx tsup",
  15. "dev": "pnpx tsup --watch",
  16. "debugger": "node debugger.js 9999",
  17. "prepublish": "pnpx tsup",
  18. "prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
  19. "do-typecheck": "pnpx tsc --noEmit"
  20. },
  21. "keywords": [
  22. "cli",
  23. "hoppscotch",
  24. "hopp-cli"
  25. ],
  26. "author": "Hoppscotch (support@hoppscotch.io)",
  27. "repository": {
  28. "type": "git",
  29. "url": "https://github.com/hoppscotch/hoppscotch.git"
  30. },
  31. "bugs": {
  32. "url": "https://github.com/hoppscotch/hoppscotch/issues",
  33. "email": "support@hoppscotch.io"
  34. },
  35. "license": "MIT",
  36. "private": false,
  37. "devDependencies": {
  38. "@hoppscotch/data": "workspace:^0.4.2",
  39. "@hoppscotch/js-sandbox": "workspace:^2.0.0",
  40. "@swc/core": "^1.2.163",
  41. "@types/axios": "^0.14.0",
  42. "@types/chalk": "^2.2.0",
  43. "@types/commander": "^2.12.2",
  44. "axios": "^0.21.4",
  45. "chalk": "^4.1.1",
  46. "commander": "^8.0.0",
  47. "esm": "^3.2.25",
  48. "fp-ts": "^2.11.3",
  49. "lodash": "^4.17.21",
  50. "prettier": "^2.6.2",
  51. "qs": "^6.10.3",
  52. "tsup": "^5.12.4",
  53. "typescript": "^4.6.3"
  54. }
  55. }