-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.15 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": "graphql-shield-generator",
"version": "0.0.2",
"description": "Emits a GraphQL Shield from your GraphQL schema",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prerelease": "npm run build",
"release": "./package.sh && cd package && npm publish",
"prettier": "prettier --ignore-path .gitignore --write --list-different \"**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/omar-dulaimi/graphql-shield-generator.git"
},
"keywords": [
"graphql",
"graphql-shield",
"graphql-shield-generator"
],
"author": "omar-dulaimi",
"license": "MIT",
"bugs": {
"url": "https://github.com/omar-dulaimi/graphql-shield-generator/issues"
},
"homepage": "https://github.com/omar-dulaimi/graphql-shield-generator#readme",
"devDependencies": {
"@types/node": "^18.11.18",
"@types/prettier": "^2.7.2",
"graphql": "^16.6.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"dependencies": {
"@graphql-tools/schema": "^9.0.12",
"@graphql-tools/utils": "^9.1.3",
"prettier": "^2.8.1"
}
}