@sentio/runtime 2.36.0-rc.14 → 2.36.0-rc.15

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/runtime",
3
- "version": "2.36.0-rc.14",
3
+ "version": "2.36.0-rc.15",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
@@ -30,10 +30,7 @@
30
30
  "protobufjs": "^7.2.6",
31
31
  "utility-types": "^3.11.0",
32
32
  "winston": "^3.11.0",
33
- "@sentio/protos": "2.36.0-rc.14"
34
- },
35
- "peerDependencies": {
36
- "@sentio/sdk": "^2.36.0-rc.14"
33
+ "@sentio/protos": "2.36.0-rc.15"
37
34
  },
38
35
  "devDependencies": {
39
36
  "@types/command-line-args": "^5.2.3",
@@ -50,10 +47,10 @@
50
47
  "build": "pnpm compile",
51
48
  "build:all": "pnpm --filter=$(node -p \"require('./package.json').name\")... build",
52
49
  "compile": "tsc",
53
- "run": "node --loader ts-node/esm --files src/processor-runner.ts --log-format=json",
54
- "run-benchmark": "node --loader ts-node/esm --files src/decode-benchmark.ts",
55
- "start_js": "node --loader ts-node/esm --files ./lib/processor-runner.js $PWD/../../debug/dist/lib.js",
56
- "start_ts": "node --loader ts-node/esm --files ./lib/processor-runner.js --log-format=json $PWD/../../debug/src/processor.ts",
50
+ "run": "tsx src/processor-runner.ts --log-format=json",
51
+ "run-benchmark": "tsx src/decode-benchmark.ts",
52
+ "start_js": "tsx ./lib/processor-runner.js $PWD/../../debug/dist/lib.js",
53
+ "start_ts": "tsx ./lib/processor-runner.js --log-format=json $PWD/../../debug/src/processor.ts",
57
54
  "test": "NODE_OPTIONS=--experimental-vm-modules pnpm jest"
58
55
  }
59
56
  }