@towns-protocol/react-sdk 0.0.430 → 0.0.431
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,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@towns-protocol/react-sdk",
|
|
3
3
|
"description": "React Hooks for Towns Protocol SDK",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.431",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/esm/index.js",
|
|
7
7
|
"types": "./dist/types/index.d.ts",
|
|
8
8
|
"scripts": {
|
|
9
|
-
"build": "
|
|
9
|
+
"build": "bun run clean && bun run build:esm+types",
|
|
10
10
|
"build:esm+types": "tsc --project tsconfig.build.json --outDir ./dist/esm --declaration --declarationMap --declarationDir ./dist/types",
|
|
11
11
|
"clean": "rm -rf dist tsconfig.tsbuildinfo",
|
|
12
|
-
"gen": "
|
|
12
|
+
"gen": "bun run gen:extractor && bun run gen:docs",
|
|
13
13
|
"gen:docs": "tsx ./scripts/docgen/generate.ts",
|
|
14
14
|
"gen:extractor": "api-extractor run --local",
|
|
15
15
|
"lint": "eslint ./src --max-warnings=0",
|
|
16
16
|
"test:build": "publint --strict && attw --pack --ignore-rules cjs-resolves-to-esm",
|
|
17
17
|
"typecheck": "tsc --noEmit",
|
|
18
|
-
"watch": "
|
|
18
|
+
"watch": "bun run build -w"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@towns-protocol/proto": "^0.0.
|
|
22
|
-
"@towns-protocol/sdk": "^0.0.
|
|
23
|
-
"@towns-protocol/web3": "^0.0.
|
|
21
|
+
"@towns-protocol/proto": "^0.0.431",
|
|
22
|
+
"@towns-protocol/sdk": "^0.0.431",
|
|
23
|
+
"@towns-protocol/web3": "^0.0.431",
|
|
24
24
|
"ethers": "^5.8.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
},
|
|
73
73
|
"sideEffects": false,
|
|
74
74
|
"typings": "./dist/types/index.d.ts",
|
|
75
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "02cd0a82c6fe5e92ce21456e2aa910978b46a1bf"
|
|
76
76
|
}
|