@sentio/runtime 2.13.3-rc.2 → 2.13.3-rc.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
File without changes
package/package.json CHANGED
@@ -1,19 +1,8 @@
1
1
  {
2
2
  "name": "@sentio/runtime",
3
3
  "license": "Apache-2.0",
4
- "version": "2.13.3-rc.2",
5
- "scripts": {
6
- "compile": "tsc",
7
- "build": "yarn compile",
8
- "build_all": "yarn lerna run --scope=@sentio/runtime build --include-dependencies",
9
- "test": "NODE_OPTIONS=--experimental-vm-modules yarn jest",
10
- "run": "ts-node-esm --files src/processor-runner.ts --log-format=json",
11
- "run-benchmark": "ts-node-esm --files src/decode-benchmark.ts",
12
- "start_ts": "ts-node-esm --files ./lib/processor-runner.js --log-format=json $PWD/../../debug/src/processor.ts",
13
- "start_js": "ts-node-esm --files ./lib/processor-runner.js $PWD/../../debug/dist/lib.js"
14
- },
4
+ "version": "2.13.3-rc.4",
15
5
  "dependencies": {
16
- "@sentio/protos": "^2.13.3-rc.2",
17
6
  "command-line-args": "^5.2.1",
18
7
  "command-line-usage": "^7.0.1",
19
8
  "fs-extra": "^11.0.0",
@@ -21,14 +10,24 @@
21
10
  "nice-grpc": "^2.1.0",
22
11
  "nice-grpc-client-middleware-retry": "^3.1.2",
23
12
  "nice-grpc-prometheus": "^0.1.2",
24
- "winston": "^3.8.2"
13
+ "winston": "^3.8.2",
14
+ "long": "^5.2.3",
15
+ "nice-grpc-common": "^2.0.2",
16
+ "protobufjs": "^7.2.3",
17
+ "@grpc/grpc-js": "^1.8.14",
18
+ "prom-client": "^14.2.0",
19
+ "@sentio/protos": "2.13.3-rc.4"
25
20
  },
26
21
  "devDependencies": {
27
- "@types/chai": "^4.3.1",
22
+ "jest": "^29.5.0",
28
23
  "@types/command-line-args": "^5.2.0",
29
24
  "@types/command-line-usage": "^5.0.2",
30
25
  "@types/fs-extra": "^11.0.1",
31
- "@types/google-protobuf": "^3.15.6"
26
+ "@types/google-protobuf": "^3.15.6",
27
+ "tslib": "^2.5.0"
28
+ },
29
+ "peerDependencies": {
30
+ "@sentio/sdk": "2.13.3-rc.4"
32
31
  },
33
32
  "bin": {
34
33
  "processor-runner": "./lib/processor-runner.js"
@@ -45,5 +44,17 @@
45
44
  "!{lib,src}/tests",
46
45
  "!**/*.test.{js,ts}"
47
46
  ],
48
- "gitHead": "11bde5ffb7207bbdd8f9e0f655f766cd1880fad5"
49
- }
47
+ "engines": {
48
+ "node": ">=16"
49
+ },
50
+ "scripts": {
51
+ "compile": "tsc",
52
+ "build": "pnpm compile",
53
+ "build:all": "pnpm --filter=$(node -p \"require('./package.json').name\")... build",
54
+ "test": "NODE_OPTIONS=--experimental-vm-modules pnpm jest",
55
+ "run": "ts-node-esm --files src/processor-runner.ts --log-format=json",
56
+ "run-benchmark": "ts-node-esm --files src/decode-benchmark.ts",
57
+ "start_ts": "ts-node-esm --files ./lib/processor-runner.js --log-format=json $PWD/../../debug/src/processor.ts",
58
+ "start_js": "ts-node-esm --files ./lib/processor-runner.js $PWD/../../debug/dist/lib.js"
59
+ }
60
+ }
File without changes