btc-wallet
Version:
BTC Wallet is a toolkit that enables Bitcoin usage on the NEAR blockchain through the Satoshi protocol.
79 lines (78 loc) • 2.22 kB
JSON
{
"name": "btc-wallet",
"version": "0.5.100-beta",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"module": "esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"esm"
],
"author": "Satoshi Team",
"publishConfig": {
"access": "public"
},
"browserslist": [
"> 0.1%",
"last 2 versions",
"ie>=9"
],
"keywords": [
"btc",
"connect",
"bitcoin",
"wallet",
"connectkit",
"mpc"
],
"sideEffects": false,
"scripts": {
"build": "echo '{ \"type\": \"commonjs\" }' > dist/package.json && node esBuild.js",
"build:development": "echo '{ \"type\": \"commonjs\" }' > dist/package.json && NODE_ENV=development node esBuild.js",
"build:watch": "npm run build --watch",
"clean": "rm -rf dist && rm -rf esm",
"dev": "npm run clean && NODE_ENV=development npm run build:watch & NODE_ENV=development npm run typegen:watch",
"prepare": "MINIFY_CSS=true npm run build",
"prebuild": "npm run typegen",
"typecheck": "npm run tsc --noEmit",
"typegen": "tsc --emitDeclarationOnly || true",
"typegen:watch": "tsc --emitDeclarationOnly --watch"
},
"dependencies": {
"@bitcoinerlab/secp256k1": "^1.2.0",
"@ethereumjs/util": "^9.0.1",
"@near-js/transactions": "^1.3.0",
"@near-js/utils": "^1.0.1",
"@particle-network/aa": "^1.5.0",
"@particle-network/chains": "*",
"@particle-network/wallet": "^1.4.6",
"big.js": "^6.2.2",
"bitcoinjs-lib": "^6.1.7",
"bs58": "^6.0.0",
"coinselect": "^3.1.13",
"near-api-js": "^5.0.0",
"react-remove-scroll": "^2.5.7",
"ref-modal-ui": "^8.9.13",
"sats-connect": "^1.4.1",
"viem": "^2.0.3"
},
"devDependencies": {
"@near-wallet-selector/core": "^9.3.0",
"cssnano": "^6.0.3",
"env-cmd": "^10.1.0",
"esbuild": "^0.15.18",
"esbuild-css-modules-plugin": "^3.1.0",
"esbuild-plugin-replace": "^1.4.0",
"esbuild-sass-plugin": "^2.16.1",
"esbuild-scss-modules-plugin": "^1.1.1",
"eslint-plugin-react-hooks": "^4.6.0",
"sass": "^1.69.7",
"typescript-plugin-css-modules": "^5.0.2"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
}
}