package.json 915 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@vendure/dashboard-plugin",
  3. "version": "3.2.3",
  4. "main": "dist/index.js",
  5. "types": "dist/index.d.ts",
  6. "files": [
  7. "dist/**/*"
  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 dist && 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. "@vendure/common": "3.2.3",
  27. "@vendure/core": "3.2.3",
  28. "rimraf": "^5.0.5",
  29. "typescript": "5.8.2"
  30. },
  31. "dependencies": {}
  32. }