Files
hub-monorepo/packages/hub-nodejs/examples/write-data/package.json
Varun Srinivasan 4d15c45695 docs(hub-nodejs): example that demonstrates writing messages to hubs (#710)
* docs(hub-nodejs): example that demonstrates writing messages to hubs

* docs: renaming things for clarity
2023-03-21 07:35:48 -07:00

19 lines
335 B
JSON

{
"name": "example-write-user-data",
"private": true,
"type": "module",
"version": "0.0.0",
"main": "index.ts",
"scripts": {
"start": "tsx index.ts"
},
"dependencies": {
"@farcaster/hub-nodejs": "^0.5.0",
"ethers": "^6.2.0"
},
"devDependencies": {
"tsx": "^3.12.5",
"typescript": "^5.0.0"
}
}