package.json 869 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@vendure/admin-ui-plugin",
  3. "version": "2.0.0-next.28",
  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": "tslint --fix --project ./",
  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.0.0-next.28",
  25. "@vendure/core": "^2.0.0-next.28",
  26. "express": "^4.17.1",
  27. "rimraf": "^3.0.2",
  28. "typescript": "4.5.5"
  29. },
  30. "dependencies": {
  31. "fs-extra": "^10.0.0"
  32. }
  33. }