1
0

package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@vendure/asset-server-plugin",
  3. "version": "1.3.2",
  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": "jest --config ../../e2e-common/jest-config.js --package=asset-server-plugin"
  16. },
  17. "homepage": "https://www.vendure.io/",
  18. "funding": "https://github.com/sponsors/michaelbromley",
  19. "publishConfig": {
  20. "access": "public"
  21. },
  22. "devDependencies": {
  23. "@types/express": "^4.17.8",
  24. "@types/fs-extra": "^9.0.8",
  25. "@types/node-fetch": "^2.5.8",
  26. "@types/sharp": "^0.27.1",
  27. "@vendure/common": "^1.3.2",
  28. "@vendure/core": "^1.3.2",
  29. "aws-sdk": "^2.856.0",
  30. "express": "^4.17.1",
  31. "node-fetch": "^2.6.1",
  32. "rimraf": "^3.0.2",
  33. "typescript": "4.3.5"
  34. },
  35. "dependencies": {
  36. "file-type": "^16.2.0",
  37. "fs-extra": "^10.0.0",
  38. "sharp": "~0.29.0"
  39. }
  40. }