@standard-crypto/farcaster-js
Version:
A collection of tools for interacting with the Farcaster social network.
66 lines • 1.87 kB
JSON
{
"name": "@standard-crypto/farcaster-js",
"version": "7.4.0",
"description": "A collection of tools for interacting with the Farcaster social network.",
"type": "module",
"repository": {
"url": "https://github.com/standard-crypto/farcaster-js",
"type": "git"
},
"homepage": "https://github.com/standard-crypto/farcaster-js",
"bugs": "https://github.com/standard-crypto/farcaster-js/issues",
"author": "Gavi Galloway",
"license": "MIT",
"peerDependencies": {
"axios": "~1.5.1"
},
"dependencies": {
"@standard-crypto/farcaster-js-cli": "1.0.2",
"@standard-crypto/farcaster-js-hub-rest": "1.5.0",
"@standard-crypto/farcaster-js-neynar": "2.0.2"
},
"files": [
"package.json",
"README.md",
"dist/**"
],
"scripts": {
"build": "yarn run pre-tshy && yarn run -T tshy && yarn run post-tshy",
"clean": "yarn clean:dist",
"clean:dist": "rm -rf dist",
"cz": "yarn run -T cz",
"prepack": "cp ../../README.md .",
"postpack": "rm README.md",
"publish": "yarn npm publish",
"pre-tshy": "mv tsconfig.json tsconfig.json.bak && mv tsconfig.build.json tsconfig.json",
"post-tshy": "mv tsconfig.json tsconfig.build.json && mv tsconfig.json.bak tsconfig.json"
},
"keywords": [
"farcaster"
],
"publishConfig": {
"access": "public"
},
"tshy": {
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"main": "./dist/commonjs/index.js",
"bin": "./dist/commonjs/cli.js",
"types": "./dist/commonjs/index.d.ts"
}