-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.17 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "graphqlade",
"version": "1.9.0",
"description": "A complete TypeScript library for GraphQL development on server- and client-side",
"keywords": [
"graphql",
"typescript",
"code-generation",
"server",
"client",
"websockets"
],
"homepage": "https://github.com/morris/graphqlade",
"repository": {
"type": "git",
"url": "https://github.com/morris/graphqlade.git"
},
"bugs": {
"url": "https://github.com/morris/graphqlade/issues"
},
"contributors": [
"Morris Brodersen <[email protected]> (https://morrisbrodersen.de)"
],
"license": "ISC",
"engines": {
"node": ">=14"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "bash scripts/build.sh",
"build-examples": "bash scripts/build-examples.sh",
"check": "bash scripts/check.sh",
"clean": "bash scripts/clean.sh",
"docs": "typedoc src/index.ts --excludeProtected --excludePrivate --readme none --out docs/reference",
"example": "bash scripts/example.sh",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint .",
"test": "node --import tsx --test test/*.test.ts test/*/*.test.ts",
"test-coverage": "c8 --include src --reporter text --reporter lcov node --import tsx --test test/*.test.ts test/*/*.test.ts"
},
"peerDependencies": {
"graphql": "^16",
"prettier": ">=2",
"typescript": ">=4",
"ws": "^8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@koa/router": "^15.4.0",
"@types/cors": "^2.8.12",
"@types/express": "^5.0.6",
"@types/koa": "^2.15.0",
"@types/koa-bodyparser": "^4.3.7",
"@types/node": "^24.12.2",
"@types/ws": "^8.5.3",
"c8": "^11.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"eslint": "^10.2.0",
"express": "^5.2.1",
"graphql": "^16.9.0",
"graphql-http": "^1.22.1",
"graphql-scalars": "^1.23.0",
"koa": "^3.2.0",
"koa-bodyparser": "^4.3.0",
"prettier": "^3.3.2",
"terser": "^5.31.1",
"tsx": "^4.19.4",
"typedoc": "^0.28.5",
"typescript": "^5.5.2",
"typescript-eslint": "^8.33.1",
"ws": "^8.17.1"
}
}