@sentio/runtime 2.29.0-rc.1 → 2.29.0

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