-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "gql-sdl",
"version": "1.1.0",
"description": "CLI tool to download the GraphQL schema (as GraphQL SDL or JSON) from a given API with introspection enabled",
"keywords": [
"cli",
"graphql"
],
"homepage": "https://github.com/jkmartindale/gql-sdl#readme",
"bugs": "https://github.com/jkmartindale/gql-sdl/issues",
"license": "MIT",
"author": "James Martindale (https://twitter.com/jkmartindale)",
"files": [
"dist/**/*",
"!dist/*.tsbuildinfo"
],
"main": "dist/index.js",
"bin": {
"gql-sdl": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jkmartindale/gql-sdl.git"
},
"scripts": {
"build": "npx tsc",
"prepare": "npm run build",
"start": "node dist/index.js"
},
"dependencies": {
"argparse": "^2.0.1",
"graphql": "^16.8.1"
},
"devDependencies": {
"@types/argparse": "file:types/argparse",
"@types/node": "^20.9.0",
"typescript": "^5.2.2"
},
"type": "module",
"types": "dist/index.d.ts"
}