package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@vendure/asset-server-plugin",
  3. "version": "2.2.0-next.5",
  4. "main": "lib/index.js",
  5. "types": "lib/index.d.ts",
  6. "files": [
  7. "lib/**/*"
  8. ],
  9. "license": "MIT",
  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.398.0",
  25. "@aws-sdk/lib-storage": "^3.398.0",
  26. "@types/express": "^4.17.17",
  27. "@types/fs-extra": "^11.0.1",
  28. "@types/node-fetch": "^2.5.8",
  29. "@types/sharp": "^0.30.4",
  30. "@vendure/common": "2.2.0-next.5",
  31. "@vendure/core": "2.2.0-next.5",
  32. "express": "^4.17.1",
  33. "node-fetch": "^2.6.7",
  34. "rimraf": "^3.0.2",
  35. "typescript": "5.3.3"
  36. },
  37. "dependencies": {
  38. "file-type": "^16.5.3",
  39. "fs-extra": "^11.1.1",
  40. "sharp": "~0.32.5"
  41. }
  42. }