forked from imxeno/trpc-rabbitmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.4 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
{
"name": "trpc-mqtt",
"version": "1.1.0",
"description": "tRPC adapter for MQTT",
"author": "Erwan d'Orgeville <info@erwandorgeville.com>",
"license": "MIT",
"keywords": [
"trpc",
"mqtt"
],
"homepage": "https://github.com/edorgeville/trpc-mqtt",
"repository": "github:edorgeville/trpc-mqtt",
"bugs": "https://github.com/edorgeville/trpc-mqtt/issues",
"scripts": {
"prepublish": "npm run build",
"test": "tsc --noEmit && jest",
"build": "rimraf dist && rimraf adapter && rimraf link && rimraf types && tsc -p tsconfig.build.json && shx mv dist/* . && rimraf dist"
},
"peerDependencies": {
"@trpc/client": "^10.9.1",
"@trpc/server": "^10.9.1",
"mqtt": "^5.5.3"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/jest": "^29.1.2",
"@types/node": "^18.8.5",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"aedes": "^0.51.1",
"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"
}
}