-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.47 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@graphile-contrib/graphql-sse",
"version": "1.0.0",
"description": "PostGraphile support for GraphQL over Server-Sent Events (SSE) powered by graphql-sse",
"keywords": [
"sse",
"server-sent-events",
"subscriptions",
"realtime",
"graphql",
"PostGraphile",
"Graphile"
],
"author": "Denis Badurina <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/graphile-contrib/graphql-sse#readme",
"repository": {
"type": "git",
"url": "https://github.com/graphile-contrib/graphql-sse.git"
},
"engines": {
"node": ">=12"
},
"packageManager": "[email protected]",
"files": [
"lib",
"README.md",
"LICENSE"
],
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"type-check": "tsc --noEmit",
"lint": "prettier -c .",
"build:esm": "tsc -b tsconfig.esm.json && node scripts/esm-post-process.js",
"build:cjs": "tsc -b tsconfig.cjs.json",
"build": "yarn build:esm && yarn build:cjs",
"prepack": "yarn build"
},
"peerDependencies": {
"graphql-sse": "^1.1.0",
"postgraphile": "^4.12.9"
},
"devDependencies": {
"glob": "^8.0.1",
"graphql-sse": "^1.1.0",
"postgraphile": "^4.12.9",
"prettier": "^2.6.2",
"replacestream": "^4.0.3",
"typescript": "^4.6.3"
}
}