package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@vendure/cli",
  3. "version": "3.3.7",
  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": "vitest --config e2e/vitest.e2e.config.mts --run"
  27. },
  28. "publishConfig": {
  29. "access": "public"
  30. },
  31. "bin": {
  32. "vendure": "dist/cli.js"
  33. },
  34. "files": [
  35. "dist/**/*"
  36. ],
  37. "dependencies": {
  38. "@clack/prompts": "^0.7.0",
  39. "@vendure/common": "3.3.7",
  40. "change-case": "^4.1.2",
  41. "commander": "^11.0.0",
  42. "dotenv": "^16.4.5",
  43. "fs-extra": "^11.2.0",
  44. "picocolors": "^1.0.0",
  45. "ts-morph": "^21.0.1",
  46. "ts-node": "^10.9.2",
  47. "tsconfig-paths": "^4.2.0"
  48. },
  49. "devDependencies": {
  50. "@vendure/core": "3.3.7",
  51. "typescript": "5.8.2"
  52. }
  53. }