package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@vendure/asset-server-plugin",
  3. "version": "2.0.0-next.28",
  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": "tslint --fix --project ./",
  14. "test": "jest --config ./jest.config.js",
  15. "e2e": "cross-env PACKAGE=asset-server-plugin vitest --config ../../e2e-common/vitest.config.ts --run",
  16. "e2e:watch": "cross-env PACKAGE=asset-server-plugin vitest --config ../../e2e-common/vitest.config.ts"
  17. },
  18. "homepage": "https://www.vendure.io/",
  19. "funding": "https://github.com/sponsors/michaelbromley",
  20. "publishConfig": {
  21. "access": "public"
  22. },
  23. "devDependencies": {
  24. "@types/express": "^4.17.8",
  25. "@types/fs-extra": "^9.0.8",
  26. "@types/node-fetch": "^2.5.8",
  27. "@types/sharp": "^0.30.4",
  28. "@vendure/common": "^2.0.0-next.28",
  29. "@vendure/core": "^2.0.0-next.28",
  30. "aws-sdk": "^2.856.0",
  31. "express": "^4.17.1",
  32. "node-fetch": "^2.6.7",
  33. "rimraf": "^3.0.2",
  34. "typescript": "4.9.5"
  35. },
  36. "dependencies": {
  37. "file-type": "^16.5.3",
  38. "fs-extra": "^10.0.0",
  39. "sharp": "~0.31.2"
  40. }
  41. }