@funduck/connectrpc-fastify 1.0.8 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -5
package/package.json
CHANGED
|
@@ -1,23 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@funduck/connectrpc-fastify",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.10",
|
|
4
4
|
"author": "Oleg Milekhin <qlfunduck@gmail.com>",
|
|
5
5
|
"description": "Wrapper for official @connectrpc/connect and fastify. Simplifies configuration, type safe binding to controller, simplifies use of middlewares and guards.",
|
|
6
|
-
"main": "dist/
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
7
8
|
"scripts": {
|
|
8
9
|
"build": "npx rimraf dist; tsc -p tsconfig.build.json",
|
|
9
10
|
"compile-proto": "cd test && npx buf dep update; npx buf lint; npx buf generate",
|
|
10
11
|
"test": "npm run compile-proto && cd test && DEBUG=true npx tsx e2e-demo.ts",
|
|
11
12
|
"publish:check": "npm test && npm run build && npm publish --tag latest --access public --dry-run",
|
|
12
|
-
"publish:latest": "npm
|
|
13
|
+
"publish:latest": "npm publish --tag latest --access public"
|
|
13
14
|
},
|
|
14
15
|
"license": "MIT",
|
|
15
16
|
"dependencies": {
|
|
16
|
-
"@bufbuild/protobuf": "^2.10.2",
|
|
17
17
|
"@connectrpc/connect-fastify": "^2.1.1",
|
|
18
|
-
"fastify": "^5.6.2",
|
|
19
18
|
"type-fest": "^5.4.1"
|
|
20
19
|
},
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"@bufbuild/protobuf": "^2.10.2",
|
|
22
|
+
"fastify": "^5.6.2"
|
|
23
|
+
},
|
|
21
24
|
"devDependencies": {
|
|
22
25
|
"@bufbuild/buf": "^1.64.0",
|
|
23
26
|
"@bufbuild/protoc-gen-es": "^2.10.2",
|