UNPKG

@rarimo/providers-near

Version:

Features of the Rarimo SDK that provide access to wallets and the ability to interact with them on the NEAR blockchain.

72 lines 1.97 kB
{ "name": "@rarimo/providers-near", "version": "2.6.0", "description": "Features of the Rarimo SDK that provide access to wallets and the ability to interact with them on the NEAR blockchain.", "repository": { "type": "git", "url": "https://github.com/rarimo/js-sdk.git", "directory": "packages/providers-near" }, "keywords": [ "sdk", "rarimo", "multi-chain", "bridging", "ethereum", "near", "polygon", "solana", "web3" ], "license": "MIT", "sideEffects": false, "typesVersions": { ">=4.2": { "*": [ "./dist/types/*" ] } }, "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "browser": "./dist/esm/index.js", "node": "./dist/cjs/index.js", "types": "index.d.ts", "exports": { ".": { "types": "./dist/types/index.d.ts", "require": "./dist/cjs/index.js", "node": "./dist/cjs/index.js", "import": "./dist/esm/index.js", "default": "./dist/esm/index.js" } }, "scripts": { "build": "yarn clean && yarn build:types && yarn build:cjs && yarn build:esm && node ./postbuild.js", "build:types": "tsc -p tsconfig.build.json --outDir ./dist/types --declaration --emitDeclarationOnly", "build:cjs": "npx swc src -d ./dist/cjs --config-file ../../.swcrc -C module.type=commonjs", "build:esm": "npx swc src -d ./dist/esm --config-file ../../.swcrc -C module.type=es6 isModule=true", "clean": "rm -rf dist", "typecheck": "tsc --noEmit" }, "dependencies": { "@near-wallet-selector/core": "^7.8.2", "@near-wallet-selector/my-near-wallet": "^7.8.2", "@rarimo/provider": "^2.6.0", "@rarimo/shared": "^2.6.0", "near-api-js": "^1.1.0" }, "devDependencies": { "@types/jest": "^29.4.0", "@types/node": "^18.14.0", "tsc-alias": "^1.8.2" }, "publishConfig": { "access": "public" }, "typedocOptions": { "entryPoints": [ "src/index.ts" ] } }