package.json 990 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "cross-inspect",
  3. "version": "1.0.1",
  4. "description": "Cross platform implementation of Node's util.inspect",
  5. "sideEffects": false,
  6. "dependencies": {
  7. "tslib": "^2.4.0"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "ardatan/graphql-tools",
  12. "directory": "packages/inspect"
  13. },
  14. "author": "Arda TANRIKULU <ardatanrikulu@gmail.com>",
  15. "license": "MIT",
  16. "engines": {
  17. "node": ">=16.0.0"
  18. },
  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. "./package.json": "./package.json"
  42. }
  43. }