package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@graphql-tools/utils",
  3. "version": "8.12.0",
  4. "description": "Common package containing utils and types for GraphQL tools",
  5. "sideEffects": false,
  6. "peerDependencies": {
  7. "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
  8. },
  9. "dependencies": {
  10. "tslib": "^2.4.0"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "ardatan/graphql-tools",
  15. "directory": "packages/utils"
  16. },
  17. "author": "Dotan Simha <dotansimha@gmail.com>",
  18. "license": "MIT",
  19. "main": "cjs/index.js",
  20. "module": "esm/index.js",
  21. "typings": "typings/index.d.ts",
  22. "typescript": {
  23. "definition": "typings/index.d.ts"
  24. },
  25. "type": "module",
  26. "exports": {
  27. ".": {
  28. "require": {
  29. "types": "./typings/index.d.cts",
  30. "default": "./cjs/index.js"
  31. },
  32. "import": {
  33. "types": "./typings/index.d.ts",
  34. "default": "./esm/index.js"
  35. },
  36. "default": {
  37. "types": "./typings/index.d.ts",
  38. "default": "./esm/index.js"
  39. }
  40. },
  41. "./*": {
  42. "require": {
  43. "types": "./typings/*.d.cts",
  44. "default": "./cjs/*.js"
  45. },
  46. "import": {
  47. "types": "./typings/*.d.ts",
  48. "default": "./esm/*.js"
  49. },
  50. "default": {
  51. "types": "./typings/*.d.ts",
  52. "default": "./esm/*.js"
  53. }
  54. },
  55. "./package.json": "./package.json"
  56. }
  57. }