package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@vendure/admin-ui-plugin",
  3. "version": "3.1.7",
  4. "main": "lib/index.js",
  5. "types": "lib/index.d.ts",
  6. "files": [
  7. "lib/**/*"
  8. ],
  9. "license": "GPL-3.0-or-later",
  10. "scripts": {
  11. "build": "rimraf lib && node -r ts-node/register build.ts && npm run compile",
  12. "watch": "tsc -p ./tsconfig.build.json --watch",
  13. "lint": "eslint --fix .",
  14. "compile": "tsc -p ./tsconfig.build.json"
  15. },
  16. "homepage": "https://www.vendure.io/",
  17. "funding": "https://github.com/sponsors/michaelbromley",
  18. "publishConfig": {
  19. "access": "public"
  20. },
  21. "devDependencies": {
  22. "@types/express": "^4.17.21",
  23. "@types/fs-extra": "^11.0.4",
  24. "@vendure/admin-ui": "^3.1.7",
  25. "@vendure/common": "^3.1.7",
  26. "@vendure/core": "^3.1.7",
  27. "express": "^4.18.3",
  28. "rimraf": "^5.0.5",
  29. "typescript": "5.4.2"
  30. },
  31. "dependencies": {
  32. "date-fns": "^2.30.0",
  33. "express-rate-limit": "^7.4.0",
  34. "fs-extra": "^11.2.0"
  35. }
  36. }