-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.46 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "gqlopera",
"version": "1.0.2",
"description": "A CLI tool to generate individual GraphQL operation files from GraphQL APIs",
"main": "dist/index.js",
"bin": {
"gqlopera": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poisonshell/gqlopera.git"
},
"homepage": "https://github.com/poisonshell/gqlopera#readme",
"bugs": {
"url": "https://github.com/poisonshell/gqlopera/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"prepare": "npm run build",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"graphql",
"documentation",
"cli",
"api",
"generator",
"introspection"
],
"author": "Your Name",
"license": "GPL-2.0",
"dependencies": {
"commander": "^11.1.0",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"chalk": "^4.1.2",
"joi": "^17.11.0",
"fs-extra": "^11.1.1",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/node": "^20.8.10",
"@types/fs-extra": "^11.0.4",
"typescript": "^5.2.2",
"eslint": "^8.52.0",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"prettier": "^3.0.3",
"jest": "^29.7.0",
"@types/jest": "^29.5.7",
"ts-jest": "^29.1.1"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=16.0.0"
}
}