package.json 999 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@vendure/admin-ui-plugin",
  3. "version": "2.2.0",
  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 && 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": "^2.2.0",
  25. "@vendure/common": "^2.2.0",
  26. "@vendure/core": "^2.2.0",
  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. "fs-extra": "^11.2.0"
  34. }
  35. }