mirror of
https://github.com/fluencelabs/aqua-ipfs
synced 2025-03-15 21:20:49 +00:00
* Use aqua keyword, use FCLI * Add new line * Use js-client * Fix index.ts * Fix compile * Remove any * Use helia, update addr * Return to ipfs-http-client * Update README * Use js-kubo-rpc-client * Update README and comments --------- Co-authored-by: Akim Mamedov <akim99999999@gmail.com>
29 lines
744 B
JSON
29 lines
744 B
JSON
{
|
|
"type": "module",
|
|
"name": "ipfs-aqua-example",
|
|
"version": "1.0.0",
|
|
"description": "A simple example of how to use ipfs-aqua in TS",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"compile-aqua": "fluence aqua -i aqua -o generated",
|
|
"prebuild": "npm run compile-aqua",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"prestart": "npm run build"
|
|
},
|
|
"author": "Fluence Labs",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@fluencelabs/aqua-ipfs": "^0.5.29",
|
|
"@fluencelabs/aqua-lib": "^0.9.0",
|
|
"@fluencelabs/js-client": "^0.4.2",
|
|
"kubo-rpc-client": "^3.0.2",
|
|
"@multiformats/multiaddr": "^12.1.1",
|
|
"it-all": "^1.0.5",
|
|
"uint8arrays": "^2.1.5"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^4.0.0"
|
|
}
|
|
}
|