package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@vendure/cli",
  3. "version": "3.5.2",
  4. "description": "A modern, headless ecommerce framework",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/vendure-ecommerce/vendure"
  8. },
  9. "keywords": [
  10. "vendure",
  11. "ecommerce",
  12. "headless",
  13. "graphql",
  14. "typescript"
  15. ],
  16. "homepage": "https://www.vendure.io",
  17. "funding": "https://github.com/sponsors/michaelbromley",
  18. "private": false,
  19. "license": "GPL-3.0-or-later",
  20. "type": "commonjs",
  21. "scripts": {
  22. "build": "rimraf dist && tsc -p ./tsconfig.cli.json && ts-node ./build.ts",
  23. "watch": "tsc -p ./tsconfig.cli.json --watch",
  24. "ci": "npm run build",
  25. "test": "vitest --config vitest.config.mts --run",
  26. "e2e": "cross-env PACKAGE=cli vitest --config ../../e2e-common/vitest.config.mts --run --pool=forks",
  27. "e2e:watch": "cross-env PACKAGE=cli vitest --config ../../e2e-common/vitest.config.mts"
  28. },
  29. "publishConfig": {
  30. "access": "public"
  31. },
  32. "bin": {
  33. "vendure": "dist/cli.js"
  34. },
  35. "files": [
  36. "dist/**/*"
  37. ],
  38. "dependencies": {
  39. "@clack/prompts": "^0.7.0",
  40. "@vendure/common": "3.5.2",
  41. "change-case": "^4.1.2",
  42. "commander": "^11.0.0",
  43. "dotenv": "^16.4.5",
  44. "fs-extra": "^11.2.0",
  45. "picocolors": "^1.0.0",
  46. "strip-json-comments": "^5.0.3",
  47. "ts-morph": "^21.0.1",
  48. "ts-node": "^10.9.2",
  49. "tsconfig-paths": "^4.2.0"
  50. },
  51. "devDependencies": {
  52. "@vendure/core": "3.5.2",
  53. "@vendure/testing": "3.5.2",
  54. "cross-env": "^7.0.3",
  55. "typescript": "5.8.2"
  56. }
  57. }