-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "protobuf-zmq-ts-transport",
"version": "0.0.1",
"description": "A transport layer for to sit between protobuf and zmq",
"main": "index.mjs",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist",
"README.md"
],
"scripts": {
"generate:proto": "pnpm protoc --ts_out ./test/generated/ --proto_path ./test/assets test_service.proto",
"build:types": "tsc --emitDeclarationOnly -p tsconfig.release.json",
"build": "pnpm build:types && tsx build.ts",
"clean": "rimraf dist"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"dependencies": {
"@protobuf-ts/runtime-rpc": "^2.9.3",
"rxjs": "^8.0.0-alpha.14",
"zeromq": "^6.0.0-beta.19",
"deepmerge": "^4.3.1"
},
"devDependencies": {
"rimraf": "^5.0.5",
"tsx": "^4.7.0",
"dotenv": "^16.4.1",
"@types/node": "16.11.7",
"typescript": "^5.3.3",
"prettier": "^3.2.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"@tsconfig/node16": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@protobuf-ts/protoc": "^2.9.3",
"@protobuf-ts/plugin": "^2.9.3",
"@protobuf-ts/runtime": "^2.9.3",
"vitest": "^1.2.2",
"vite": "^5.0.12",
"esbuild": "^0.20.0"
},
"keywords": [],
"author": "",
"license": "MIT"
}