-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1 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
47
48
49
{
"name": "resgen",
"version": "1.1.6",
"description": "CLI tool to generate GraphQL resolver files",
"main": "src/index.js",
"scripts": {
"start": "ts-node src/index",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Segun98/rgen.git"
},
"keywords": [
"graphql",
"cli",
"codegen",
"resolver",
"typescript",
"typegraphql",
"folder",
"file",
"graphql file gen",
"decorator",
"class resolver"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Segun98/rgen/issues"
},
"homepage": "https://github.com/Segun98/rgen#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.7.18",
"@types/prettier": "^2.7.0",
"@types/yargs": "^17.0.12",
"typescript": "^4.8.3"
},
"dependencies": {
"case-anything": "^2.1.13",
"fs-extra": "^10.1.0",
"prettier": "^2.7.1",
"yargs": "^17.5.1"
},
"bin": {
"rgen": "dist/index.js"
}
}