-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.64 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "grpcity",
"version": "2.1.5",
"description": "A powerful and complete gRPC framework for Node.js",
"author": "Chakhsu.Lau",
"license": "MIT",
"keywords": [
"grpcity",
"grpc.js",
"grpc",
"protobuf",
"microservice",
"framework",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chakhsu/grpcity.git"
},
"homepage": "https://github.com/chakhsu/grpcity",
"bugs": {
"url": "https://github.com/chakhsu/grpcity/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=16"
},
"files": [
"lib",
".github/assert",
"README_CN.md"
],
"scripts": {
"clear": "rimraf lib && rimraf coverage",
"build": "pnpm clear && tsc -P tsconfig.json",
"release": "pnpm build && pnpm publish .",
"lint:prettier": "prettier --cache --check --ignore-path .gitignore --ignore-path .prettierignore .",
"prettier": "pnpm lint:prettier --write",
"prepare": "husky install",
"test": "NODE_OPTIONS=--experimental-vm-modules pnpm exec jest"
},
"lint-staged": {
"*.{ts,js,md,json,yaml}": "prettier --write"
},
"dependencies": {
"@grpc/grpc-js": "^1.10.7",
"@grpc/proto-loader": "^0.7.13",
"@grpc/reflection": "^1.0.4",
"joi": "^17.13.1",
"protobufjs": "^7.3.0"
},
"devDependencies": {
"@tsconfig/node14": "^14.1.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"rimraf": "^5.0.6",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}