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
3.0.0

index.js

18

package.json
{
"name": "@graphql-inspector/json-loader",
"version": "2.9.0",
"version": "3.0.0",
"description": "Load GraphQL Schema from JSON files (introspection result)",

@@ -10,3 +10,3 @@ "sideEffects": false,

"dependencies": {
"@graphql-tools/json-file-loader": "^6.0.0",
"@graphql-tools/json-file-loader": "^7.0.0",
"tslib": "^2.0.0"

@@ -31,8 +31,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"
}
}
}