mirror of
https://github.com/farcasterxyz/hub-monorepo.git
synced 2026-02-04 18:05:10 -05:00
* 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
42 lines
1.0 KiB
JSON
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"
|
|
}
|
|
}
|