package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@vendure/create",
  3. "version": "2.2.5",
  4. "license": "MIT",
  5. "bin": {
  6. "create": "./index.js"
  7. },
  8. "files": [
  9. "index.js",
  10. "lib/**/*",
  11. "assets/**/*"
  12. ],
  13. "scripts": {
  14. "dev": "ts-node src/create-vendure-app.ts",
  15. "copy-assets": "rimraf assets && ts-node ./build.ts",
  16. "build": "npm run copy-assets && rimraf lib && tsc -p ./tsconfig.build.json",
  17. "watch": "npm run copy-assets && rimraf lib && tsc -p ./tsconfig.build.json -w",
  18. "lint": "eslint --fix ."
  19. },
  20. "homepage": "https://www.vendure.io/",
  21. "funding": "https://github.com/sponsors/michaelbromley",
  22. "publishConfig": {
  23. "access": "public"
  24. },
  25. "devDependencies": {
  26. "@types/cross-spawn": "^6.0.6",
  27. "@types/detect-port": "^1.3.5",
  28. "@types/fs-extra": "^11.0.4",
  29. "@types/handlebars": "^4.1.0",
  30. "@types/semver": "^7.5.8",
  31. "@vendure/core": "^2.2.5",
  32. "rimraf": "^5.0.5",
  33. "ts-node": "^10.9.2",
  34. "typescript": "5.3.3"
  35. },
  36. "dependencies": {
  37. "@clack/prompts": "^0.7.0",
  38. "@vendure/common": "^2.2.5",
  39. "commander": "^11.0.0",
  40. "cross-spawn": "^7.0.3",
  41. "detect-port": "^1.5.1",
  42. "fs-extra": "^11.2.0",
  43. "handlebars": "^4.7.8",
  44. "picocolors": "^1.0.0",
  45. "semver": "^7.5.4",
  46. "tcp-port-used": "^1.0.2"
  47. }
  48. }