123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "name": "@graphql-tools/utils",
- "version": "8.12.0",
- "description": "Common package containing utils and types for GraphQL tools",
- "sideEffects": false,
- "peerDependencies": {
- "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
- },
- "dependencies": {
- "tslib": "^2.4.0"
- },
- "repository": {
- "type": "git",
- "url": "ardatan/graphql-tools",
- "directory": "packages/utils"
- },
- "author": "Dotan Simha <dotansimha@gmail.com>",
- "license": "MIT",
- "main": "cjs/index.js",
- "module": "esm/index.js",
- "typings": "typings/index.d.ts",
- "typescript": {
- "definition": "typings/index.d.ts"
- },
- "type": "module",
- "exports": {
- ".": {
- "require": {
- "types": "./typings/index.d.cts",
- "default": "./cjs/index.js"
- },
- "import": {
- "types": "./typings/index.d.ts",
- "default": "./esm/index.js"
- },
- "default": {
- "types": "./typings/index.d.ts",
- "default": "./esm/index.js"
- }
- },
- "./*": {
- "require": {
- "types": "./typings/*.d.cts",
- "default": "./cjs/*.js"
- },
- "import": {
- "types": "./typings/*.d.ts",
- "default": "./esm/*.js"
- },
- "default": {
- "types": "./typings/*.d.ts",
- "default": "./esm/*.js"
- }
- },
- "./package.json": "./package.json"
- }
- }
|