-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.53 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
{
"name": "trpc-rabbitmq",
"version": "0.1.3",
"description": "tRPC adapter for RabbitMQ",
"author": "Piotr Adamczyk <[email protected]>",
"license": "MIT",
"keywords": [
"trpc",
"rabbitmq",
"rmq"
],
"homepage": "https://github.com/imxeno/trpc-rabbitmq",
"repository": "github:imxeno/trpc-rabbitmq",
"bugs": "https://github.com/imxeno/trpc-rabbitmq/issues",
"scripts": {
"prepublish": "npm run build",
"test": "tsc --noEmit && jest --verbose --passWithNoTests",
"build": "rimraf dist && rimraf adapter && rimraf link && rimraf types && tsc -p tsconfig.build.json && shx mv dist/* . && rimraf dist"
},
"peerDependencies": {
"@trpc/client": "10.0.0-proxy-beta.18",
"@trpc/server": "10.0.0-proxy-beta.18"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/amqplib": "^0.8.2",
"@types/jest": "^29.1.2",
"@types/node": "^18.8.5",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"shx": "^0.3.4",
"superjson": "^1.10.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"zod": "^3.19.1"
},
"dependencies": {
"amqp-connection-manager": "^4.1.7",
"amqplib": "^0.10.3"
}
}