diff --git a/.changeset/grumpy-apes-bathe.md b/.changeset/grumpy-apes-bathe.md new file mode 100644 index 0000000000..f56080e520 --- /dev/null +++ b/.changeset/grumpy-apes-bathe.md @@ -0,0 +1,6 @@ +--- +'moralis': patch +'@moralisweb3/streams': patch +--- + +Move streams-typings from dev dependencies to dependencies in streams package and also correct export name in umbrella package diff --git a/packages/moralis/package.json b/packages/moralis/package.json index fc9a487433..d26080d447 100644 --- a/packages/moralis/package.json +++ b/packages/moralis/package.json @@ -19,7 +19,7 @@ "exports": { ".": "./lib/index.js", "./core": "./lib/core/index.js", - "./stream-typings": "./lib/streamsTypings/index.js", + "./streams-typings": "./lib/streamsTypings/index.js", "./common-evm-utils": "./lib/commonEvmUtils/index.js", "./common-sol-utils": "./lib/commonSolUtils/index.js" }, @@ -37,7 +37,7 @@ "common-sol-utils": [ "lib/commonSolUtils/index.d.ts" ], - "stream-typings": [ + "streams-typings": [ "lib/streamsTypings/index.d.ts" ] } diff --git a/packages/streams/package.json b/packages/streams/package.json index 48b237d118..928a4b306d 100644 --- a/packages/streams/package.json +++ b/packages/streams/package.json @@ -22,7 +22,6 @@ "dev": "tsc --watch" }, "devDependencies": { - "@moralisweb3/streams-typings": "^1.0.5", "@moralisweb3/test-utils": "1.0.0", "@types/ethereumjs-util": "5.2.0", "eslint-plugin-jest": "^26.8.3", @@ -35,6 +34,7 @@ "@moralisweb3/api-utils": "^2.6.6", "@moralisweb3/core": "^2.6.6", "@moralisweb3/evm-utils": "^2.6.6", + "@moralisweb3/streams-typings": "^1.0.5", "ethereumjs-util": "^7.1.0", "web3-eth-abi": "^1.8.0" }