-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 885 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
{
"name": "type-graphql-utils",
"version": "2.1.0",
"description": "utilities to transform type-graphql types",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"prepare": "install-peers && tsc",
"build": "tsc",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "github:ChrisLahaye/type-graphql-utils"
},
"keywords": [
"type-graphql"
],
"author": "Chris Lahaye <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChrisLahaye/type-graphql-utils/issues"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"install-peers-cli": "^2.2.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"graphql": "^15",
"type-graphql": "^1"
}
}