-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #81 from wnfs-wg/w3s
feat: Add web3storage example
- Loading branch information
Showing
13 changed files
with
2,493 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"$schema": "https://codesandbox.io/schemas/tasks.json", | ||
"setupTasks": ["pnpm install"], | ||
"tasks": { | ||
"install-dependencies": { | ||
"name": "Install Dependencies", | ||
"command": "pnpm install", | ||
"restartOn": { | ||
"files": ["package.json", "pnpm-lock.yaml"], | ||
"branch": true | ||
} | ||
}, | ||
"dev": { | ||
"name": "Run Dev Server", | ||
"command": "pnpm dev", | ||
"runAtStart": true | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Web3Storage example | ||
|
||
An example app that shows how to store a WNFS on Web3Storage using the `@wnfs-wg/nest` package. | ||
|
||
## Run locally | ||
|
||
From this directory: | ||
|
||
```bash | ||
pnpm install | ||
pnpm dev | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"name": "demo", | ||
"type": "module", | ||
"version": "1.0.0", | ||
"private": true, | ||
"description": "", | ||
"author": "Steven Vandevelde <[email protected]> (tokono.ma)", | ||
"license": "MIT", | ||
"keywords": [], | ||
"main": "src/main.jsx", | ||
"scripts": { | ||
"lint": "tsc --build && eslint . && prettier --check '**/*.{js,jsx,ts,tsx,yml,json,css}' --ignore-path ../../.gitignore", | ||
"dev": "rsbuild dev", | ||
"build": "rsbuild build", | ||
"preview": "rsbuild preview" | ||
}, | ||
"dependencies": { | ||
"@picocss/pico": "^2.0.6", | ||
"@ucanto/core": "^9.0.1", | ||
"@web3-storage/upload-client": "^13.1.0", | ||
"@web3-storage/w3up-client": "^12.5.0", | ||
"@wnfs-wg/nest": "*", | ||
"blockstore-core": "^4.4.0", | ||
"blockstore-idb": "^1.1.8", | ||
"idb-keyval": "^6.2.1", | ||
"interface-blockstore": "^5.2.10", | ||
"maake-oob": "^0.1.4", | ||
"partykit-transport": "^0.1.0", | ||
"qrcode": "^1.5.3" | ||
}, | ||
"devDependencies": { | ||
"@rsbuild/core": "^0.5.2", | ||
"@types/node": "^20.11.30", | ||
"@types/qrcode": "^1.5.5", | ||
"typescript": "5.4.3" | ||
}, | ||
"eslintConfig": { | ||
"extends": [ | ||
"@fission-codes" | ||
], | ||
"ignorePatterns": [ | ||
"dist" | ||
], | ||
"rules": { | ||
"no-console": [ | ||
"off", | ||
"always" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { defineConfig } from "@rsbuild/core"; | ||
|
||
export default defineConfig({ | ||
html: { | ||
template: "./src/index.html", | ||
}, | ||
}); |
Oops, something went wrong.