Files
hub-monorepo/packages/hub-nodejs/package.json
Varun Srinivasan 57c540d520 chore: release new version of packages (#761)
* chore: changelog bump to app/hubble to prep for release

* chore: don't minor bump hubble and protobufs for client changes

* chore: bump versions for publishing
2023-03-26 18:17:47 -07:00

42 lines
1.0 KiB
JSON

{
"name": "@farcaster/hub-nodejs",
"version": "0.6.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"license": "MIT",
"dependencies": {
"@farcaster/protobufs": "0.1.11",
"@farcaster/utils": "0.4.0",
"@noble/hashes": "^1.3.0",
"ethers": "~6.2.1",
"neverthrow": "^6.0.0"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"clean": "rimraf ./dist",
"lint": "eslint src/ --color --ext .ts",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:ci": "ENVIRONMENT=test NODE_OPTIONS=--experimental-vm-modules jest --ci --forceExit --coverage",
"prepublishOnly": "yarn run build"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"eslint-config-custom": "*",
"prettier-config-custom": "*"
},
"publishConfig": {
"access": "public"
}
}