package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@vendure/cli",
  3. "version": "2.1.0-next.6",
  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": "MIT",
  20. "type": "commonjs",
  21. "scripts": {
  22. "build": "rimraf dist && tsc -p ./tsconfig.cli.json",
  23. "watch": "tsc -p ./tsconfig.cli.json --watch",
  24. "ci": "yarn build"
  25. },
  26. "publishConfig": {
  27. "access": "public"
  28. },
  29. "bin": {
  30. "vendure": "dist/cli.js"
  31. },
  32. "files": [
  33. "dist/**/*"
  34. ],
  35. "dependencies": {
  36. "@clack/prompts": "^0.7.0",
  37. "@vendure/common": "2.1.0-next.6",
  38. "change-case": "^4.1.2",
  39. "commander": "^11.0.0",
  40. "fs-extra": "^11.1.1",
  41. "picocolors": "^1.0.0"
  42. },
  43. "devDependencies": {
  44. "typescript": "4.9.5"
  45. }
  46. }