-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.13 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@soundxyz/redis-pubsub",
"version": "4.1.2",
"description": "Full type-safe Redis PubSub with Zod",
"keywords": [
"ioredis",
"redis",
"pubsub",
"graphql"
],
"repository": {
"type": "git",
"url": "git+https://github.com/soundxyz/redis-pubsub.git"
},
"license": "MIT",
"author": "PabloSzx <[email protected]>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./*": {
"types": "./dist/*.d.ts",
"require": "./dist/*.js",
"import": "./dist/*.mjs"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "concurrently -r \"bob-ts -f interop -i src -d dist --no-sourcemap\" \"tsc -p tsconfig.build.json\"",
"release": "changeset publish",
"test": "c8 --check-coverage --lines=100 --statements=100 --branches=97 --functions=95 --include=src --exclude=src/promise.ts ava",
"test:watch": "ava --watch",
"test:watch:coverage": "bob-watch -w src test package.json -c \"pnpm test\""
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@graphql-ez/client": "^0.6.1",
"@graphql-ez/fastify": "^0.12.0",
"@graphql-ez/fastify-testing": "^0.4.0",
"@graphql-ez/plugin-websockets": "^0.11.2",
"@pothos/core": "^3.30.0",
"@types/node": "^20.4.2",
"ava": "^5.3.1",
"bob-ts": "^4.1.1",
"bob-tsm": "^1.1.2",
"bob-watch": "^0.1.2",
"c8": "^8.0.0",
"concurrently": "^8.2.0",
"dotenv": "^16.3.1",
"esbuild": "^0.18.12",
"fastify": "^4.19.2",
"graphql": "^16.7.1",
"graphql-ez": "^0.16.0",
"graphql-ws": "^5.14.0",
"ioredis": "^5.3.2",
"pino": "^8.14.1",
"prettier": "^3.0.0",
"superjson": "^1.12.4",
"typescript": "^5.1.6",
"wait-for-expect": "^3.0.2",
"zod": "^3.21.4"
},
"peerDependencies": {
"ioredis": "^5.0.5",
"superjson": "^1.12.4",
"zod": "^3.17.3"
},
"peerDependenciesMeta": {
"ioredis": {
"optional": true
},
"zod": {
"optional": true
}
}
}