-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.14 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
67
68
69
70
71
72
73
74
{
"name": "@pereslavtsev/webarchiver-protoc",
"version": "1.0.2",
"description": "A shared package of Protocol Buffers (Protobuf) schemas and generated code for using between WebArchiver gRPC microservices",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"grpc",
"grpc-node",
"protobuf",
"webarchiver"
],
"author": {
"name": "Vitaly Pereslavtsev",
"email": "dev@pereslavtsev.com",
"url": "https://www.pereslavtsev.com/"
},
"homepage": "https://github.com/pereslavtsev/webarchiver-proto#readme",
"bugs": {
"url": "https://github.com/pereslavtsev/webarchiver-proto/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pereslavtsev/webarchiver-proto.git"
},
"license": "ISC",
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"prebuild": "rimraf dist && copyfiles -f src/**/*.proto dist/proto",
"prepare": "husky install",
"build": "tsc --p tsconfig.build.json",
"lint": "eslint \"src/**/*.ts\" --fix",
"prepublish": "pnpm prebuild && pnpm build",
"protoc:gen": "make protoc-gen",
"docs:gen": "sh make_docs.sh"
},
"peerDependencies": {
"@grpc/grpc-js": "^1.4.4",
"@grpc/proto-loader": "^0.6.6",
"@nestjs/microservices": "^8.2.0",
"rxjs": "^7.4.0"
},
"dependencies": {
"long": "^5.1.0",
"protobufjs": "^6.11.2"
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@grpc/grpc-js": "^1.4.4",
"@grpc/proto-loader": "^0.6.6",
"@nestjs/cli": "^8.0.0",
"@nestjs/common": "^8.0.0",
"@nestjs/core": "^8.0.0",
"@nestjs/microservices": "^8.2.0",
"@nestjs/schematics": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"copyfiles": "^2.4.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"prettier": "^2.3.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.4.0",
"ts-proto": "^1.85.0",
"typescript": "^4.3.5"
}
}