-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 893 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 893 Bytes
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
{
"name": "ts2graphql",
"version": "1.0.11",
"description": "",
"main": "dist/index.js",
"types": "dist/index",
"repository": {
"type": "github",
"url": "https://github.com/cevek/ts2graphql"
},
"scripts": {
"build": "tsc -p src",
"prepublishOnly": "rm -rf dist && npm run build",
"example": "npx ts-node example/index.ts"
},
"keywords": [
"typescript",
"graphql",
"interface"
],
"author": "cevek",
"license": "ISC",
"files": [
"dist"
],
"dependencies": {
"@types/graphql": ">=14.0.5",
"@types/node": ">=10.0.0",
"ts-type-ast": ">=1.0.7"
},
"peerDependencies": {
"typescript": ">3.3.0",
"graphql": ">14.0.0"
},
"devDependencies": {
"ts-node": ">=8.0.2",
"typescript": ">=3.4.5"
}
}