- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
51 lines
1.4 KiB
JSON
51 lines
1.4 KiB
JSON
{
|
|
"name": "@solana/wallet-standard-wallet-adapter-base",
|
|
"version": "1.1.4",
|
|
"author": "Solana Maintainers <maintainers@solana.foundation>",
|
|
"repository": "https://github.com/solana-labs/wallet-standard",
|
|
"license": "Apache-2.0",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"src",
|
|
"LICENSE"
|
|
],
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"type": "module",
|
|
"sideEffects": false,
|
|
"main": "./lib/cjs/index.js",
|
|
"module": "./lib/esm/index.js",
|
|
"types": "./lib/types/index.d.ts",
|
|
"exports": {
|
|
"require": "./lib/cjs/index.js",
|
|
"import": "./lib/esm/index.js",
|
|
"types": "./lib/types/index.d.ts"
|
|
},
|
|
"peerDependencies": {
|
|
"@solana/web3.js": "^1.98.0",
|
|
"bs58": "^6.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@solana/wallet-adapter-base": "^0.9.23",
|
|
"@wallet-standard/app": "^1.1.0",
|
|
"@wallet-standard/base": "^1.1.0",
|
|
"@wallet-standard/features": "^1.1.0",
|
|
"@wallet-standard/wallet": "^1.1.0",
|
|
"@solana/wallet-standard-chains": "^1.1.1",
|
|
"@solana/wallet-standard-features": "^1.3.0",
|
|
"@solana/wallet-standard-util": "^1.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@solana/web3.js": "^1.98.0",
|
|
"bs58": "^6.0.0",
|
|
"shx": "^0.3.4"
|
|
},
|
|
"scripts": {
|
|
"clean": "shx mkdir -p lib && shx rm -rf lib",
|
|
"package": "shx mkdir -p lib/cjs && shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json"
|
|
}
|
|
} |