-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
34 lines (34 loc) · 1.02 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
{
"name": "garph",
"description": "A tRPC-like schema-builder for GraphQL",
"repository": {
"type": "git",
"url": "https://github.com/stepci/garph"
},
"version": "0.6.8",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"build": "tsc -p tsconfig.json",
"postbuild": "typedoc --readme none --entryDocument index.md --plugin typedoc-plugin-markdown --tsconfig tsconfig.json --hideInPageTOC true --out www/api src/index.ts",
"ts:check": "tsc -p tsconfig.test.json",
"test": "ts-node examples/promo.ts"
},
"devDependencies": {
"@graphql-yoga/plugin-defer-stream": "^2.0.4",
"graphql": "^16.6.0",
"graphql-yoga": "^4.0.4",
"ts-node": "^10.9.1",
"typedoc": "^0.23.27",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.5",
"vitepress": "^1.0.0-rc.15"
},
"dependencies": {
"graphql-compose": "^9.0.10",
"single-user-cache": "^0.6.0"
}
}