UNPKG

@syncify/codegen

Version:

Shopify GraphQL codegen handling for the sane developer.

55 lines 1.27 kB
{ "name": "@syncify/codegen", "version": "0.0.1", "description": "Shopify GraphQL codegen handling for the sane developer.", "main": "./dist/index.js", "types": "./dist/index.d.ts", "author": { "name": "Νικολας Σαββιδης", "url": "https://github.com/panoply/syncify", "email": "n.savvidis@gmx.com" }, "license": "Apache-2.0", "tsup": { "entry": [ "./src/index.ts" ], "dts": true, "format": [ "cjs" ], "silent": true, "target": "node20", "splitting": false, "platform": "node", "clean": true, "external": [ "@graphql-codegen/cli", "@graphql-codegen/plugin-helpers", "@graphql-codegen/typescript", "@syncify/ansi", "prettier", "typescript" ], "bundle": true }, "devDependencies": { "@graphql-codegen/cli": "^5.0.5", "prettier": "^3.4.2", "type-fest": "^4.30.0", "typescript": "^5.7.2" }, "peerDependencies": { "@graphql-codegen/cli": "^5.0.5", "prettier": "^3.4.2", "typescript": "^5.7.2" }, "dependencies": { "@graphql-codegen/plugin-helpers": "^5.1.0", "@graphql-codegen/typescript": "^4.1.5" }, "scripts": { "dev": "tsup --watch", "build": "tsup --minify" } }