package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@vendure/asset-server-plugin",
  3. "version": "3.5.1",
  4. "main": "lib/index.js",
  5. "types": "lib/index.d.ts",
  6. "files": [
  7. "lib/**/*"
  8. ],
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/vendure-ecommerce/vendure"
  12. },
  13. "license": "GPL-3.0-or-later",
  14. "scripts": {
  15. "watch": "tsc -p ./tsconfig.build.json --watch",
  16. "build": "rimraf lib && tsc -p ./tsconfig.build.json && node build.js",
  17. "lint": "eslint --fix .",
  18. "test": "vitest --run",
  19. "e2e": "cross-env PACKAGE=asset-server-plugin vitest --config ../../e2e-common/vitest.config.mts --run",
  20. "e2e:watch": "cross-env PACKAGE=asset-server-plugin vitest --config ../../e2e-common/vitest.config.mts"
  21. },
  22. "homepage": "https://www.vendure.io",
  23. "funding": "https://github.com/sponsors/michaelbromley",
  24. "publishConfig": {
  25. "access": "public"
  26. },
  27. "devDependencies": {
  28. "@aws-sdk/client-s3": "^3.529.1",
  29. "@aws-sdk/lib-storage": "^3.529.1",
  30. "@types/express": "^5.0.1",
  31. "@types/fs-extra": "^11.0.4",
  32. "@types/node-fetch": "^2.6.11",
  33. "@vendure/common": "3.5.1",
  34. "@vendure/core": "3.5.1",
  35. "express": "^5.1.0",
  36. "node-fetch": "^2.7.0",
  37. "rimraf": "^5.0.5",
  38. "typescript": "5.8.2"
  39. },
  40. "dependencies": {
  41. "file-type": "^19.0.0",
  42. "fs-extra": "^11.2.0",
  43. "sharp": "~0.33.5"
  44. }
  45. }