-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.31 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
{
"name": "graphql-pg-subscriptions",
"version": "3.3.0",
"description": "A graphql subscriptions implementation using postgres and apollo's graphql-subscriptions.",
"homepage": "https://github.com/siamahnaf/graphql-pg-subscriptions",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && npm run build:esm && npm run build.cjs",
"build:esm": "tsc",
"build.cjs": "tsc --module CommonJS --outDir dist/cjs"
},
"author": {
"name": "Siam Ahnaf",
"email": "mail@siamahnaf.com",
"url": "https://www.siamahnaf.com"
},
"keywords": [
"pubsub",
"pub/sub for pg",
"pub/sub for postgreesql",
"graphql",
"graphql-subscriptions",
"graphql-pg-subscriptions"
],
"license": "ISC",
"repository": {
"type": "git",
"directory": "https://github.com/siamahnaf/graphql-pg-subscriptions",
"url": "https://github.com/siamahnaf/graphql-pg-subscriptions"
},
"peerDependencies": {
"graphql": "latest"
},
"dependencies": {
"graphql-subscriptions": "^2.0.0",
"iterall": "^1.3.0",
"pg-ipc": "^1.0.5"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@types/pg": "^8.11.6",
"graphql": "^16.8.1",
"pg": "^8.11.5",
"rimraf": "^6.1.3",
"typescript": "^5.4.5"
}
}