package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@vendure/client-sdk",
  3. "version": "2.2.0-next.8",
  4. "description": "A client library for interacting with the Vendure GraphQL API",
  5. "keywords": [
  6. "vendure",
  7. "testing",
  8. "e2e"
  9. ],
  10. "author": "Michael Bromley <michael@michaelbromley.co.uk>",
  11. "homepage": "https://www.vendure.io/",
  12. "license": "MIT",
  13. "directories": {
  14. "lib": "lib"
  15. },
  16. "files": [
  17. "lib"
  18. ],
  19. "publishConfig": {
  20. "access": "public"
  21. },
  22. "main": "lib/index.js",
  23. "types": "lib/index.d.ts",
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/vendure-ecommerce/vendure.git"
  27. },
  28. "funding": "https://github.com/sponsors/michaelbromley",
  29. "scripts": {
  30. "build": "tsc -p ./tsconfig.build.json",
  31. "watch": "tsc -p ./tsconfig.build.json -w",
  32. "lint": "eslint --fix .",
  33. "ci": "yarn build"
  34. },
  35. "bugs": {
  36. "url": "https://github.com/vendure-ecommerce/vendure/issues"
  37. },
  38. "dependencies": {
  39. "@graphql-typed-document-node/core": "^3.2.0"
  40. },
  41. "peerDependencies": {
  42. "graphql": ">16.8.0"
  43. },
  44. "devDependencies": {
  45. "typescript": "4.9.5"
  46. }
  47. }