@replit/graphql-codegen-persisted-queries
Version:
GraphQL Codegen plugin to generate persisted query manifests for server and client
71 lines • 1.9 kB
JSON
{
"name": "@replit/graphql-codegen-persisted-queries",
"version": "0.1.2",
"description": "GraphQL Codegen plugin to generate persisted query manifests for server and client",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/replit/graphql-codegen-persisted-queries.git"
},
"keywords": [
"GraphQL",
"Codegen",
"PQL",
"Persisted",
"Queries"
],
"author": "darsh.patel@repl.it",
"license": "MIT",
"bugs": {
"url": "https://github.com/replit/graphql-codegen-persisted-queries/issues"
},
"homepage": "https://github.com/replit/graphql-codegen-persisted-queries#readme",
"packageManager": "pnpm@8.15.5",
"peerDependencies": {
"@graphql-codegen/plugin-helpers": "^5.0.0",
"graphql": "^16.0.0"
},
"devDependencies": {
"@graphql-codegen/plugin-helpers": "^5.0.0",
"@stylistic/eslint-plugin-js": "^4.2.0",
"@stylistic/eslint-plugin-ts": "^4.2.0",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"graphql": "^16.8.1",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"typescript-eslint": "^8.26.1",
"vitest": "^3.0.9"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest"
}
}