🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

graphql-codegen-plugin-helpers

Package Overview
Dependencies
Maintainers
1
Versions
1198
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphql-codegen-plugin-helpers - npm Package Compare versions

Comparing version

to
0.19.0-alpha.dd5bacfd

dist/commonjs/index.d.ts

22

package.json
{
"name": "graphql-codegen-plugin-helpers",
"version": "0.19.0-alpha.dbd8179a",
"version": "0.19.0-alpha.dd5bacfd",
"description": "graphql-codegen-cli template for TypeScript typings for both client side and server side",

@@ -8,8 +8,12 @@ "repository": "git@github.com:dotansimha/graphql-code-generator.git",

"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc"
"build": "tsc -m esnext --outDir dist/esnext && tsc -m commonjs --outDir dist/commonjs"
},
"peerDependencies": {
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
},
"dependencies": {
"graphql-codegen-core": "0.19.0-alpha.dbd8179a",
"import-from": "2.1.0"
"change-case": "3.1.0",
"common-tags": "1.8.0",
"import-from": "2.1.0",
"tslib": "1.9.3"
},

@@ -19,7 +23,9 @@ "devDependencies": {

},
"main": "./dist/index.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"main": "dist/commonjs/index.js",
"module": "dist/esnext/index.js",
"typings": "dist/esnext/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
"definition": "dist/esnext/index.d.ts"
}
}
{
"compilerOptions": {
"importHelpers": true,
"experimentalDecorators": true,
"module": "commonjs",
"target": "es5",
"module": "esnext",
"target": "es2018",
"lib": ["es6", "esnext", "es2015"],
"suppressImplicitAnyIndexErrors": true,
"moduleResolution": "node",

@@ -13,2 +13,3 @@ "emitDecoratorMetadata": true,

"outDir": "./dist/",
"rootDir": "./src",
"noImplicitAny": true,

@@ -15,0 +16,0 @@ "noImplicitThis": true,