-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "@codeekage/grpc-js",
"version": "1.0.73",
"description": "gRPC package",
"main": "index.js",
"types": "types",
"module": "index",
"engines": {
"node": "^20"
},
"repository": {
"type": "git",
"url": "https://github.com/codeekage/grpc-js.git"
},
"scripts": {
"build": "rm -rf lib/ && tsc -p tsconfig.json && cp package.json lib && cd lib",
"lint": "eslint --fix ./src/**/*.ts",
"test": "mocha --require ts-node/register --timeout 0 --ui bdd src/**/*.spec.ts",
"dev:publish": "npm run build && npm pack && npm link"
},
"keywords": [
"grpc",
"javascript",
"typescript"
],
"author": "Abraham Agiri<@codeekage>",
"license": "ISC",
"dependencies": {
"@grpc/grpc-js": "^1.10.0",
"@grpc/reflection": "^1.0.1",
"class-validator": "^0.14.1",
"grpc-health-check": "^2.0.1",
"logfmt": "^1.4.0",
"mongoose": "^8.2.0",
"pino": "^9.3.2",
"typedi": "^0.10.0"
},
"devDependencies": {
"@types/logfmt": "^1.2.6",
"typescript": "^5.5.4"
},
"publishConfig": {
"@codeekage:registry": "https://npm.pkg.github.com"
}
}