-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 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
{
"name": "@haathie/pgmb",
"version": "0.2.14",
"description": "PG message broker, with a type-safe typescript client with built-in webhook & SSE support.",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"type": "module",
"main": "lib/index.js",
"repository": "https://github.com/haathie/pgmb",
"scripts": {
"test": "TZ=UTC NODE_ENV=test node --env-file ./.env.test --test tests/*.test.ts",
"prepare": "npm run build",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint ./ --ext .js,.ts,.jsx,.tsx",
"lint:fix": "eslint ./ --fix --ext .js,.ts,.jsx,.tsx",
"benchmark": "TZ=utc node --env-file ./.env.test benchmark/run.ts",
"pg:typegen": "pgtyped --config ./pgtyped.config.json"
},
"devDependencies": {
"@adiwajshing/eslint-config": "git+https://github.com/adiwajshing/eslint-config",
"@pgtyped/cli": "^2.4.3",
"@types/amqplib": "^0.10.0",
"@types/chance": "^1.1.6",
"@types/jest": "^27.0.0",
"@types/node": "^24.0.0",
"@types/pg": "^8.11.14",
"amqplib": "^0.10.7",
"chance": "^1.1.12",
"eslint": "^9.0.0",
"eventsource": "^4.1.0",
"pg": "^8.16.3",
"typescript": "^5.0.0"
},
"files": [
"lib",
"sql"
],
"keywords": [
"postgres",
"message-broker",
"pgmb",
"pg-mb",
"postgres-message-broker"
],
"author": "Adhiraj Singh",
"license": "MIT",
"dependencies": {
"@pgtyped/runtime": "^2.4.2",
"pino": "^9.0.0"
}
}