-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1001 Bytes
/
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
{
"name": "megaera",
"version": "1.0.0",
"description": "GraphQL to TypeScript Generator",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"megaera": "./dist/cli.js"
},
"scripts": {
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"build": "tsc",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"dependencies": {
"graphql": "^16.0.0"
},
"devDependencies": {
"@types/node": "^20.14.10",
"prettier": "^3.3.2",
"typescript": "^5.5.3",
"vitest": "^2.0.1"
},
"files": [
"dist"
],
"prettier": {
"semi": false,
"singleQuote": true,
"endOfLine": "lf"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webpod/graphql-megaera.git"
},
"keywords": [
"graphql",
"typescript",
"generator"
],
"author": "Anton Medvedev <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/webpod/graphql-megaera"
}