megaera
Version:
GraphQL to TypeScript Generator
48 lines (47 loc) • 1 kB
JSON
{
"name": "megaera",
"version": "1.0.2",
"description": "GraphQL to TypeScript Generator",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"megaera": "./dist/cli.js"
},
"scripts": {
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"build": "tsc",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"dependencies": {
"graphql": "^16.0.0"
},
"devDependencies": {
"@types/node": "^20.14.10",
"prettier": "^3.3.2",
"typescript": "^5.5.3",
"vitest": "^2.0.1"
},
"files": [
"dist"
],
"prettier": {
"semi": false,
"singleQuote": true,
"endOfLine": "lf"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webpod/graphql-megaera.git"
},
"keywords": [
"graphql",
"typescript",
"generator"
],
"author": "Anton Medvedev <anton@medv.io>",
"license": "MIT",
"homepage": "https://github.com/webpod/graphql-megaera"
}