@fastnear/utils
Version:
Utility functions for interactions with the NEAR blockchain
53 lines • 1.35 kB
JSON
{
"name": "@fastnear/utils",
"version": "1.2.0",
"description": "Utility functions for interactions with the NEAR blockchain",
"type": "module",
"types": "./dist/esm/index.d.ts",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"browser": "./dist/umd/browser.global.js",
"scripts": {
"build": "tsup",
"prepack": "yarn build && node ../../scripts/prepare-package-for-publish.mjs prepare",
"postpack": "node ../../scripts/prepare-package-for-publish.mjs restore",
"release": "node ../../scripts/publish-packed.mjs",
"clean": "yarn rimraf dist node_modules",
"type-check": "tsc --noEmit"
},
"author": "FastNear",
"homepage": "https://js.fastnear.com",
"repository": {
"type": "git",
"url": "git+https://github.com/fastnear/js-monorepo.git"
},
"keywords": [
"near-protocol",
"web3-utils",
"blockchain",
"fastnear",
"web3"
],
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.js"
}
},
"dependencies": {
"@fastnear/borsh": "1.2.0",
"@fastnear/borsh-schema": "1.2.0",
"@noble/curves": "*",
"@noble/hashes": "*",
"base58-js": "*",
"js-base64": "*"
},
"devDependencies": {
"rimraf": "*",
"tsup": "^8.3.6",
"typescript": "*"
}
}