-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.89 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.89 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "noomi-rpc-node",
"version": "0.0.16",
"description": "一个基于fury的nodejs的轻量rpc框架,支持注册中心、服务发现注册,负载均衡、协议、心跳检测、序列化、熔断、限流",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist"
},
"engines": {
"node": ">=18.12.0",
"pnpm": ">=3"
},
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"license": "MIT",
"files": [
"dist/index.js",
"dist/types/index.d.ts",
"dist/core/**/*.js",
"dist/types/core/**/*.d.ts"
],
"keywords": [
"noomi",
"rpc",
"typescript"
],
"contributors": [
"web209"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JavaSmallSmallWhite/noomi-rpc-node"
},
"homepage": "https://gitee.com/javafirstfirst/noomi-rpc-node#readme",
"dependencies": {
"@furyjs/fury": "^0.0.19",
"@grpc/grpc-js": "^1.12.5",
"@grpc/proto-loader": "^0.7.13",
"@msgpack/msgpack": "3.0.0-beta2",
"@types/consul": "^0.40.3",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"consul": "^1.2.0",
"diskusage": "^1.2.0",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"etcd3": "^1.1.2",
"json5": "^2.2.3",
"log4js": "^6.9.1",
"msgpackr": "^1.10.2",
"nacos": "^2.6.0",
"node-int64": "^0.4.0",
"node-zookeeper-client": "^1.1.3",
"noomi": "^1.0.0-beta7",
"openai": "^4.83.0",
"prettier": "3.3.0",
"protobufjs": "^7.3.0",
"reflect-metadata": "^0.2.2",
"sofa-rpc-node": "^2.10.0",
"thrift": "^0.21.0",
"typescript": "^5.4.5"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/node-zookeeper-client": "^0.2.13",
"mathjs": "^14.0.0",
"random-js": "^2.1.0",
"ts-essentials": "^9.4.1"
}
}