UNPKG

@broxus/js-bridge-essentials

Version:

Bridge JavaScript Essentials library

110 lines (109 loc) 3.48 kB
{ "name": "@broxus/js-bridge-essentials", "version": "0.28.8", "description": "Bridge JavaScript Essentials library", "license": "MIT", "keywords": [ "everscale", "tvm", "ton", "evm", "web3", "bridge", "solana" ], "maintainers": [ { "name": "Denis Klimov", "url": "https://github.com/JeremiahGeronimo" } ], "publishConfig": { "access": "public" }, "exports": { ".": { "types": "./dist/esm/index.d.ts", "node": "./dist/cjs/index.js", "require": "./dist/cjs/index.js", "import": "./dist/esm/index.js" }, "./wasm/bridge": { "types": "./dist/wasm/bridge/index.d.ts", "node": "./dist/wasm/bridge/index.js", "require": "./dist/wasm/bridge/index.js", "import": "./dist/wasm/bridge/index.js" }, "./wasm/round-loader": { "types": "./dist/wasm/round_loader/index.d.ts", "node": "./dist/wasm/round_loader/index.js", "require": "./dist/wasm/round_loader/index.js", "import": "./dist/wasm/round_loader/index.js" }, "./package.json": "./package.json" }, "files": [ "dist", "LICENSE", "README.md" ], "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts", "sideEffects": false, "engines": { "node": ">=16", "npm": ">=8" }, "browser": { "crypto": false }, "scripts": { "build": "npx yarn build:js && npx yarn wasm:copy", "build:js": "npx yarn build:esm & npx yarn build:cjs", "build:cjs": "tsc -p tsconfig.cjs.json && tsc-alias -p tsconfig.cjs.json", "build:esm": "tsc -p tsconfig.esm.json && tsc-alias -p tsconfig.esm.json", "wasm:copy": "npx copyfiles \"wasm/**/*.{ts,js,json,wasm}\" -u 1 dist/wasm", "dev": "npx chokidar \"src/**/*.ts\" -c \"npx yarn build:esm -- --incremental\"", "lint": "npx eslint src --ext .ts", "lint:fix": "npx eslint src --ext .ts --fix", "cleanup": "npx rimraf dist", "prepare": "npx yarn cleanup && npx yarn build" }, "dependencies": { "@broxus/js-core": "^0.33.6", "@broxus/js-utils": "^1.4.1", "@solana/web3.js": "^1.98.2", "@ton/core": "^0.61.0", "@ton/crypto": "^3.3.0", "@ton/ton": "^15.3.1", "bignumber.js": "^9.3.1", "bs58": "^6.0.0", "eth-ton-abi-converter": "^0.5.2", "web3": "^4.16.0", "web3-core": "^4.7.1", "web3-eth": "^4.11.1", "web3-eth-contract": "^4.7.2", "web3-types": "^1.10.0", "web3-utils": "^4.3.3" }, "optionalDependencies": { "assert": "^2.1.0", "buffer": "^6.0.3", "constants-browserify": "^1.0.0", "crypto-browserify": "^3.12.1", "https-browserify": "^1.0.0", "os-browserify": "^0.3.0", "stream-browserify": "^3.0.0", "stream-http": "^3.2.0", "url": "^0.11.4", "util": "^0.12.5" }, "peerDependencies": { "everscale-inpage-provider": "^0.3.x || ^0.4.x || >=0.6.1", "everscale-standalone-client": "^2.x || >=2.2.1", "mobx": "^6.x", "nekoton-wasm": "^1.5.x" }, "gitHead": "dd05d7a8d9b1f915dbc3bd9ab08212fe8d95afdd" }