-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "gql-docgen",
"version": "0.1.13",
"description": "documentation generator for GraphQL API",
"main": "tsc",
"bin": {
"gql-docgen": "./dist/index.js"
},
"files": ["dist"],
"homepage": "https://github.com/well-balanced/gql-docgen",
"bugs": {
"url": "https://github.com/well-balanced/gql-docgen/issues",
"email": "[email protected]"
},
"author": "Woosik Kim <[email protected]> (https://github.com/well-balanced)",
"repository": {
"type": "git",
"url": "https://github.com/well-balanced/gql-docgen.git"
},
"scripts": {
"docgen": "ts-node index.ts typeDefs ./out"
},
"keywords": [
"graphql",
"schema",
"docs",
"document",
"mdx",
"markdown"
],
"license": "MIT",
"dependencies": {
"axios": "^0.27.2",
"graphql": "^16.5.0",
"lodash": "^4.17.21",
"minimist": "^1.2.6"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/lodash": "^4.14.182",
"@types/minimist": "^1.2.2",
"@types/node": "^17.0.42",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
}
}