UNPKG

2.73 kBJSONView Raw
1{
2 "name": "simple-graphql-to-typescript",
3 "version": "0.6.19",
4 "description": "Simple Typescript interface generator from GraphQL Schemas",
5 "main": "dist/index.js",
6 "typings": "types/index.d.ts",
7 "directories": {},
8 "scripts": {
9 "test": "yarn build && jest --runInBand",
10 "test:reset": "yarn test --updateSnapshot",
11 "debug": "node ./dist/sgts-bin.js generate",
12 "clean": "rimraf dist",
13 "dev": "tsc --pretty --watch",
14 "build": "tsc --pretty",
15 "lint": "eslint -c .eslintrc.js . --ext .ts --fix --ignore-path .gitignore",
16 "docs:dev": "vuepress dev docs",
17 "docs:build": "vuepress build docs"
18 },
19 "repository": {
20 "type": "git",
21 "url": "git+https://victorgarciaesgi@github.com/victorgarciaesgi/simple-graphql-to-typescript.git"
22 },
23 "files": [
24 "dist",
25 "types/index.d.ts",
26 "types/runtime.d.ts",
27 "types/utilities",
28 "types/models"
29 ],
30 "keywords": [
31 "graphql",
32 "typescript",
33 "ts",
34 "gql",
35 "gql-ts",
36 "graphql to typescript",
37 "graphql codegen",
38 "graphql generator",
39 "graphql generator typescript",
40 "graphql typescript generator",
41 "simple graphql to typescript",
42 "graphql code generator",
43 "graphql typescript",
44 "graphql-typescript",
45 "graphql-ts",
46 "graphql-ts-generator",
47 "graphql-to-typescript"
48 ],
49 "resolutions": {
50 "graphql": "^14.5.8"
51 },
52 "author": {
53 "name": "Victor Garcia",
54 "url": "https://github.com/victorgarciaesgi"
55 },
56 "license": "MIT",
57 "bugs": {
58 "url": "https://github.com/victorgarciaesgi/simple-graphql-to-typescript/issues"
59 },
60 "homepage": "https://sgts.netlify.com/",
61 "bin": {
62 "sgts": "./dist/sgts-bin.js"
63 },
64 "devDependencies": {
65 "@types/figlet": "^1.2.0",
66 "@types/graphql": "^14.5.0",
67 "@types/inquirer": "^6.5.0",
68 "@types/jest": "^26.0.0",
69 "@types/node": "^14.0.13",
70 "@types/node-fetch": "^2.5.7",
71 "@types/prettier": "^2.0.1",
72 "@typescript-eslint/eslint-plugin": "^3.2.0",
73 "@typescript-eslint/parser": "^3.2.0",
74 "@vuepress/plugin-google-analytics": "^1.5.1",
75 "eslint": "^7.2.0",
76 "eslint-config-prettier": "^6.11.0",
77 "eslint-plugin-prettier": "^3.1.3",
78 "inquirer": "^7.1.0",
79 "jest": "^26.0.1",
80 "rimraf": "^3.0.2",
81 "ts-jest": "^26.1.0",
82 "vuepress": "^1.5.1",
83 "vuepress-plugin-autometa": "^0.1.13"
84 },
85 "dependencies": {
86 "apollo-client": "^2.6.10",
87 "chalk": "^4.1.0",
88 "commander": "^4.0.1",
89 "custom-env": "^2.0.1",
90 "dotenv": "^8.2.0",
91 "figlet": "^1.4.0",
92 "graphql": "^15.1.0",
93 "mkdirp": "^1.0.4",
94 "node-fetch": "^2.6.0",
95 "ora": "^4.0.4",
96 "prettier": "^2.0.5",
97 "querystringify": "^2.1.1",
98 "typescript": "^3.9.5"
99 }
100}