package.json 1.1 KB

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