@seedprotocol/sdk 0.2.0 → 0.2.1

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 +15 -12
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "@seedprotocol/sdk",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "The SDK for Seed Protocol",
5
5
  "type": "module",
6
- "types": "./dist/types/src/index.d.ts",
7
6
  "engines": {
8
- "node": ">= 20 < 21"
7
+ "node": ">= 20 < 22"
9
8
  },
10
9
  "files": [
11
10
  "dist"
@@ -78,7 +77,6 @@
78
77
  "reflect-metadata": "^0.2.2",
79
78
  "rimraf": "^6.0.1",
80
79
  "rxjs": "^7.8.1",
81
- "thirdweb": "^5.80.0",
82
80
  "ts-import": "^5.0.0-beta.0",
83
81
  "ts-morph": "^24.0.0",
84
82
  "ts-proto": "^2.6.0",
@@ -107,6 +105,7 @@
107
105
  "@rollup/plugin-typescript": "^12.1.2",
108
106
  "@rollup/plugin-virtual": "^3.0.2",
109
107
  "@stylistic/eslint-plugin-ts": "^2.12.1",
108
+ "@tanstack/react-query": "^5.62.11",
110
109
  "@testing-library/dom": "^10.4.0",
111
110
  "@testing-library/react": "^16.1.0",
112
111
  "@testing-library/react-hooks": "^8.0.1",
@@ -163,12 +162,16 @@
163
162
  "rxjs": "^7.8.1"
164
163
  },
165
164
  "exports": {
166
- ".": "./dist/main.js",
167
- "./browser": {
168
- "import": "./dist/main.js",
169
- "require": "./dist/main.js",
170
- "types": "./dist/types/src/index.d.ts"
171
- },
172
- "./node": "./dist/node/main.js"
173
- }
165
+ ".": {
166
+ "import": {
167
+ "types": "./dist/types/src/index.d.ts",
168
+ "default": "./dist/main.js"
169
+ },
170
+ "require": {
171
+ "types": "./dist/types/src/index.d.ts",
172
+ "default": "./dist/main.js"
173
+ }
174
+ }
175
+ },
176
+ "packageManager": "yarn@4.5.3+sha512.3003a14012e2987072d244c720506549c1aab73ee728208f1b2580a9fd67b92d61ba6b08fe93f6dce68fd771e3af1e59a0afa28dd242dd0940d73b95fedd4e90"
174
177
  }