1
0

package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@vendure/cli",
  3. "version": "3.2.3",
  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. },
  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": "3.2.3",
  39. "change-case": "^4.1.2",
  40. "commander": "^11.0.0",
  41. "dotenv": "^16.4.5",
  42. "fs-extra": "^11.2.0",
  43. "picocolors": "^1.0.0",
  44. "ts-morph": "^21.0.1",
  45. "ts-node": "^10.9.2",
  46. "tsconfig-paths": "^4.2.0"
  47. },
  48. "devDependencies": {
  49. "@vendure/core": "3.2.3",
  50. "typescript": "5.8.2"
  51. }
  52. }