New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@graphql-inspector/json-loader

Package Overview
Dependencies
Maintainers
2
Versions
264
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@graphql-inspector/json-loader - npm Package Compare versions

Comparing version

to
0.0.0-canary.4c9888f

index.js

20

package.json
{
"name": "@graphql-inspector/json-loader",
"version": "0.0.0-canary.485af9a",
"version": "0.0.0-canary.4c9888f",
"description": "Load GraphQL Schema from JSON files (introspection result)",
"sideEffects": false,
"peerDependencies": {
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0"
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"@graphql-tools/json-file-loader": "^6.0.0",
"@graphql-tools/json-file-loader": "^7.3.2",
"tslib": "^2.0.0"

@@ -30,8 +30,18 @@ },

"license": "MIT",
"main": "index.cjs.js",
"module": "index.esm.js",
"main": "index.js",
"module": "index.mjs",
"typings": "index.d.ts",
"typescript": {
"definition": "index.d.ts"
},
"exports": {
".": {
"require": "./index.js",
"import": "./index.mjs"
},
"./*": {
"require": "./*.js",
"import": "./*.mjs"
}
}
}