mirror of
https://github.com/farcasterxyz/hub-monorepo.git
synced 2026-02-07 19:35:07 -05:00
38 lines
971 B
JSON
38 lines
971 B
JSON
{
|
|
"name": "@farcaster/utils",
|
|
"version": "0.2.2",
|
|
"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": {
|
|
"@faker-js/faker": "^7.6.0",
|
|
"@farcaster/protobufs": "0.1.3",
|
|
"@noble/ed25519": "^1.7.1",
|
|
"@noble/hashes": "^1.1.5",
|
|
"ethers": "^5.7.2",
|
|
"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"
|
|
},
|
|
"devDependencies": {
|
|
"eslint-config-custom": "*",
|
|
"@farcaster/fishery": "2.2.3"
|
|
}
|
|
}
|