mirror of
https://github.com/farcasterxyz/hub-monorepo.git
synced 2026-04-18 03:00:22 -04:00
* changeset initial commit * update root package.json * use changelog-git package for changesets
39 lines
995 B
JSON
39 lines
995 B
JSON
{
|
|
"name": "@farcaster/utils",
|
|
"version": "0.1.4",
|
|
"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/flatbuffers": "0.1.4",
|
|
"@noble/ed25519": "^1.7.1",
|
|
"@noble/hashes": "^1.1.5",
|
|
"ethers": "^5.7.2",
|
|
"flatbuffers": "^22.11.23",
|
|
"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": "*",
|
|
"fishery": "^2.2.2"
|
|
}
|
|
}
|