mirror of
https://github.com/farcasterxyz/hub-monorepo.git
synced 2026-02-11 21:45:09 -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.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "@farcaster/utils",
|
|
"version": "0.4.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": {
|
|
"@ethersproject/abstract-signer": "^5.7.0",
|
|
"@faker-js/faker": "^7.6.0",
|
|
"@farcaster/protobufs": "0.1.11",
|
|
"@noble/ed25519": "^1.7.3",
|
|
"@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": {
|
|
"@farcaster/fishery": "2.2.3",
|
|
"eslint-config-custom": "*",
|
|
"ethers5": "npm:ethers@^5.7.0",
|
|
"prettier-config-custom": "*"
|
|
}
|
|
}
|