package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@vendure/graphiql-plugin",
  3. "version": "3.5.0",
  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. "e2e": "cross-env PACKAGE=graphiql-plugin vitest --config ../../e2e-common/vitest.config.mts --run"
  22. },
  23. "homepage": "https://www.vendure.io/",
  24. "funding": "https://github.com/sponsors/michaelbromley",
  25. "publishConfig": {
  26. "access": "public"
  27. },
  28. "dependencies": {
  29. "express": "^5.1.0"
  30. },
  31. "devDependencies": {
  32. "@graphiql/toolkit": "^0.11.1",
  33. "@types/express": "^5.0.0",
  34. "@types/react": "^19.0.0",
  35. "@types/react-dom": "^19.0.0",
  36. "@vendure/common": "3.5.0",
  37. "@vendure/core": "3.5.0",
  38. "@vitejs/plugin-react": "^5.0.4",
  39. "graphiql": "^4.0.2",
  40. "react": "^19.0.0",
  41. "react-dom": "^19.0.0",
  42. "rimraf": "^6.0.1",
  43. "vite": "^6.3.6",
  44. "vite-plugin-dts": "^4.5.4"
  45. }
  46. }