@meddleware/walrus-ui 0.1.31 → 0.1.32
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 +2 -2
- package/vite.config.ts +0 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meddleware/walrus-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.32",
|
|
4
4
|
"homepage": "https://docs.meddleware.co.uk/blockchain/sui/walrus-storage/",
|
|
5
5
|
"description": "Standalone Vue 3 SPA for uploading blobs to Walrus decentralised storage and managing owned blobs — wallet-connected, NFT-gated relay support.",
|
|
6
6
|
"author": "Meddleware <dev@meddleware.co.uk>",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@meddleware/nft-gate-client": "^0.0.9",
|
|
46
46
|
"@meddleware/ui": "^0.1.13",
|
|
47
47
|
"@meddleware/wallet-adapter": "^0.0.6",
|
|
48
|
-
"@meddleware/walrus-client": "^0.0.
|
|
48
|
+
"@meddleware/walrus-client": "^0.0.15",
|
|
49
49
|
"@meddleware/walrus-relay": "^0.1.13",
|
|
50
50
|
"@mysten/sui": "^2.31.0",
|
|
51
51
|
"@mysten/wallet-standard": "^0.21.0",
|
package/vite.config.ts
CHANGED
|
@@ -3,16 +3,9 @@ import vue from '@vitejs/plugin-vue'
|
|
|
3
3
|
|
|
4
4
|
// design-tokens and ui resolve from node_modules (published packages).
|
|
5
5
|
// @mysten/walrus is excluded from dep-optimization so its wasm `?url` import resolves.
|
|
6
|
-
// node:fs/promises is declared external so rolldown doesn't warn about the Node-only
|
|
7
|
-
// uploadLocalFile helper in @meddleware/walrus-client (never called from browser code).
|
|
8
6
|
export default defineConfig({
|
|
9
7
|
plugins: [vue()],
|
|
10
8
|
optimizeDeps: {
|
|
11
9
|
exclude: ['@mysten/walrus', '@mysten/walrus-wasm'],
|
|
12
10
|
},
|
|
13
|
-
build: {
|
|
14
|
-
rollupOptions: {
|
|
15
|
-
external: ['node:fs/promises'],
|
|
16
|
-
},
|
|
17
|
-
},
|
|
18
11
|
})
|