package.json 1.3 KB

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