package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@vendure/graphiql-plugin",
  3. "version": "3.2.3",
  4. "license": "GPL-3.0-or-later",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "files": [
  8. "dist/**/*"
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/vendure-ecommerce/vendure"
  13. },
  14. "scripts": {
  15. "watch": "tsc -p ./tsconfig.build.json --watch",
  16. "build": "rimraf dist && npm run build:app && tsc -p ./tsconfig.build.json",
  17. "build:app": "vite build",
  18. "dev": "vite",
  19. "lint": "eslint --fix .",
  20. "test": "vitest --config vitest.config.mts --run"
  21. },
  22. "homepage": "https://www.vendure.io/",
  23. "funding": "https://github.com/sponsors/michaelbromley",
  24. "publishConfig": {
  25. "access": "public"
  26. },
  27. "dependencies": {
  28. "express": "^5.1.0"
  29. },
  30. "devDependencies": {
  31. "@graphiql/toolkit": "^0.9.1",
  32. "@types/express": "^5.0.0",
  33. "@types/react": "^19.0.0",
  34. "@types/react-dom": "^19.0.0",
  35. "@vendure/common": "3.2.3",
  36. "@vendure/core": "3.2.3",
  37. "@vitejs/plugin-react": "^4.3.4",
  38. "graphiql": "^3.8.3",
  39. "react": "^19.0.0",
  40. "react-dom": "^19.0.0",
  41. "rimraf": "^6.0.1",
  42. "vite": "^6.1.0",
  43. "vite-plugin-dts": "^4.5.3"
  44. }
  45. }