-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1005 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1005 Bytes
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
{
"name": "@orwoods/networking-example",
"version": "1.0.0",
"description": "Example",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/orwoods/networking-example.git"
},
"homepage": "https://github.com/orwoods/networking-example#readme",
"bugs": {
"url": "https://github.com/orwoods/networking-example/issues"
},
"scripts": {
"build-proto": "./node_modules/.bin/build-proto-cli src/proto"
},
"keywords": [
"grpc",
"protobuf",
"kafka",
"networking",
"typescript"
],
"author": "@orwoods",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@orwoods/networking": "3.4.31"
},
"devDependencies": {
"@types/node": "22.7.6",
"@typescript-eslint/parser": "8.10.0",
"eslint": "9.13.0",
"eslint-plugin-import": "2.31.0",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"publishConfig": {
"access": "public"
}
}