package.json 736 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@vendure/asset-server-plugin",
  3. "version": "0.5.0",
  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. "lint": "tslint --fix --project ./"
  14. },
  15. "publishConfig": {
  16. "access": "public"
  17. },
  18. "devDependencies": {
  19. "@types/express": "^4.0.39",
  20. "@types/fs-extra": "^8.0.1",
  21. "@types/sharp": "^0.22.2",
  22. "@vendure/common": "^0.5.0",
  23. "@vendure/core": "^0.5.0",
  24. "express": "^4.16.4",
  25. "rimraf": "^3.0.0",
  26. "typescript": "~3.5.3"
  27. },
  28. "dependencies": {
  29. "fs-extra": "^8.0.1",
  30. "sharp": "^0.22.1"
  31. }
  32. }