package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@vendure/cli",
  3. "version": "2.2.0-next.4",
  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 && ts-node ./build.ts",
  23. "watch": "tsc -p ./tsconfig.cli.json --watch",
  24. "ci": "yarn build",
  25. "test": "vitest --config ./vitest.config.ts --run"
  26. },
  27. "publishConfig": {
  28. "access": "public"
  29. },
  30. "bin": {
  31. "vendure": "dist/cli.js"
  32. },
  33. "files": [
  34. "dist/**/*"
  35. ],
  36. "dependencies": {
  37. "@clack/prompts": "^0.7.0",
  38. "@vendure/common": "2.2.0-next.4",
  39. "change-case": "^4.1.2",
  40. "commander": "^11.0.0",
  41. "fs-extra": "^11.1.1",
  42. "picocolors": "^1.0.0",
  43. "ts-morph": "^21.0.1"
  44. },
  45. "devDependencies": {
  46. "typescript": "5.1.6"
  47. }
  48. }