-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "graphql-workers-subscriptions",
"description": "Cloudflare Workers Topic-based GraphQL Subscriptions",
"version": "0.1.6",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/bubblydoo/graphql-workers-subscriptions#readme",
"repository": {
"type": "git",
"url": "https://github.com/bubblydoo/graphql-workers-subscriptions.git"
},
"keywords": [
"cloudflare",
"graphql",
"graphql-subscriptions",
"cloudflare-worker",
"graphql-ws",
"websocket",
"subscriptions",
"durable-objects"
],
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"check": "tsc --pretty --noEmit",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@graphql-tools/utils": "^9.1.4",
"graphql": "^16.6.0",
"graphql-ws": "^5.11.2",
"radash": "^10.8.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230518.0",
"@types/uuid": "^9.0.0",
"esbuild": "^0.17.2",
"esbuild-visualizer": "^0.4.0",
"service-worker-mock": "2.0.5",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"files": [
"dist/**",
"migrations/*.sql"
],
"packageManager": "[email protected]",
"workspaces": [
"example"
]
}