package.json 722 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "@vendure/asset-server-plugin",
  3. "version": "0.1.2-beta.12",
  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"
  13. },
  14. "publishConfig": {
  15. "access": "public"
  16. },
  17. "devDependencies": {
  18. "@types/express": "^4.0.39",
  19. "@types/fs-extra": "^7.0.0",
  20. "@types/sharp": "^0.22.2",
  21. "@vendure/common": "^0.1.2-beta.12",
  22. "@vendure/core": "^0.1.2-beta.12",
  23. "express": "^4.16.4",
  24. "rimraf": "^2.6.3",
  25. "typescript": "^3.3.4000"
  26. },
  27. "dependencies": {
  28. "fs-extra": "^8.0.1",
  29. "sharp": "^0.22.1"
  30. }
  31. }