package.json 974 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "@vendure/admin-ui-plugin",
  3. "version": "2.2.0-next.3",
  4. "main": "lib/index.js",
  5. "types": "lib/index.d.ts",
  6. "files": [
  7. "lib/**/*"
  8. ],
  9. "license": "MIT",
  10. "scripts": {
  11. "build": "rimraf lib && node -r ts-node/register build.ts && yarn 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.8",
  23. "@types/fs-extra": "^9.0.1",
  24. "@vendure/common": "2.2.0-next.3",
  25. "@vendure/core": "2.2.0-next.3",
  26. "express": "^4.17.1",
  27. "rimraf": "^3.0.2",
  28. "typescript": "4.9.5"
  29. },
  30. "dependencies": {
  31. "date-fns": "^2.30.0",
  32. "fs-extra": "^11.1.1"
  33. }
  34. }