UNPKG

@tronweb3/tronwallet-adapter-tronlink

Version:

Wallet adapter for TronLink Wallet extension and TronLink app.

52 lines 1.22 kB
{ "name": "@tronweb3/tronwallet-adapter-tronlink", "version": "1.2.0", "description": "Wallet adapter for TronLink Wallet extension and TronLink app.", "keywords": [ "TRON", "TronWeb", "TronLink" ], "author": "tronweb3", "repository": { "type": "git", "url": "https://github.com/tronweb3/tronwallet-adapter" }, "license": "MIT", "type": "module", "sideEffects": false, "engines": { "node": ">=16", "pnpm": ">=7" }, "main": "./lib/cjs/index.js", "module": "./lib/esm/index.js", "types": "./lib/types/index.d.ts", "exports": { "types": "./lib/types/index.d.ts", "import": "./lib/esm/index.js", "require": "./lib/cjs/index.js" }, "files": [ "lib", "src", "LICENSE" ], "publishConfig": { "access": "public" }, "dependencies": { "@tronweb3/tronwallet-abstract-adapter": "^1.2.0" }, "devDependencies": { "@testing-library/dom": "8.20.1", "shx": "0.3.4", "vitest": "3.2.4" }, "scripts": { "clean": "shx mkdir -p lib && shx rm -rf lib", "package": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json", "test": "vitest run", "build:umd": "node ../../../scripts/build-umd.js" } }